-
-
-
[
Others]
GraphGA-TabuHierarchicalLayout.rar
... a population of chromozoms that will be used in a Genetic Algorithm to get the best subjective representation: minimal edge crossing. Minimal esge crossing is the most important aspect in aesthetic graph drawing(planar drawing). Hierarchical graph with a ...
Category:
AI-NN-PR Upload User:
skydy68 Size:
132K
-
[
Others]
GraphGA-DynamicGraphDrawingWithHybridizedGA.rar
... and we create a group of chromozoms from the input layered graph. We have inter-layer and intra-layer crossing. We use the minimum edge crossing as the principal criteria to sort chromozom. The genetic algorithm offers very good result for large graphs.
-
-
[
Matlab]
Edge_Detection.zip
... Edge Detection
This demo finds the edges of objects in a video stream using the Prewitt method. You can double-click the Edge Detection block and adjust the Threshold parameter while the simulation is running. The higher you make the threshold, the ...
-
-
-
[
Matlab]
sc_demo.rar
shape context matlab opensource code use in image process
Contains the canny edge detector and the shape context of the optimization calculation.
-
-
[
C/C++]
cv3.zip
struct Edge {
Edge(int from, int to, int cost) : from(from), to(to), cost(cost) {}
friend bool operator<(const Edge& a, const Edge& b) {
if (a.cost != b.cost) {
return a.cost > b.cost
}