| Package | Description |
|---|---|
| org.bytedeco.javacpp | |
| org.bytedeco.javacpp.helper |
| Modifier and Type | Method and Description |
|---|---|
opencv_core.CvGraph |
opencv_core.CvGraph.active_count(int active_count) |
opencv_core.CvGraph |
opencv_core.CvGraph.block_max(org.bytedeco.javacpp.BytePointer block_max) |
static opencv_core.CvGraph |
opencv_core.cvCloneGraph(opencv_core.CvGraph graph,
opencv_core.CvMemStorage storage)
Creates a copy of graph
|
static opencv_core.CvGraph |
opencv_core.cvCreateGraph(int graph_flags,
int header_size,
int vtx_size,
int edge_size,
opencv_core.CvMemStorage storage)
Creates new graph
|
opencv_core.CvGraph |
opencv_core.CvGraph.delta_elems(int delta_elems) |
opencv_core.CvGraph |
opencv_core.CvGraph.edges(opencv_core.CvSet edges) |
opencv_core.CvGraph |
opencv_core.CvGraph.elem_size(int elem_size) |
opencv_core.CvGraph |
opencv_core.CvGraph.first(opencv_core.CvSeqBlock first) |
opencv_core.CvGraph |
opencv_core.CvGraph.flags(int flags) |
opencv_core.CvGraph |
opencv_core.CvGraph.free_blocks(opencv_core.CvSeqBlock free_blocks) |
opencv_core.CvGraph |
opencv_core.CvGraph.free_elems(opencv_core.CvSetElem free_elems) |
opencv_core.CvGraph |
opencv_core.CvGraphScanner.graph() |
opencv_core.CvGraph |
opencv_core.CvGraph.h_next(opencv_core.CvSeq h_next) |
opencv_core.CvGraph |
opencv_core.CvGraph.h_prev(opencv_core.CvSeq h_prev) |
opencv_core.CvGraph |
opencv_core.CvGraph.header_size(int header_size) |
opencv_core.CvGraph |
opencv_core.CvGraph.position(long position) |
opencv_core.CvGraph |
opencv_core.CvGraph.ptr(org.bytedeco.javacpp.BytePointer ptr) |
opencv_core.CvGraph |
opencv_core.CvGraph.storage(opencv_core.CvMemStorage storage) |
opencv_core.CvGraph |
opencv_core.CvGraph.total(int total) |
opencv_core.CvGraph |
opencv_core.CvGraph.v_next(opencv_core.CvSeq v_next) |
opencv_core.CvGraph |
opencv_core.CvGraph.v_prev(opencv_core.CvSeq v_prev) |
| Modifier and Type | Method and Description |
|---|---|
static void |
opencv_core.cvClearGraph(opencv_core.CvGraph graph)
Remove all vertices and edges from the graph
|
static opencv_core.CvGraph |
opencv_core.cvCloneGraph(opencv_core.CvGraph graph,
opencv_core.CvMemStorage storage)
Creates a copy of graph
|
static opencv_core.CvGraphScanner |
opencv_core.cvCreateGraphScanner(opencv_core.CvGraph graph) |
static opencv_core.CvGraphScanner |
opencv_core.cvCreateGraphScanner(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
int mask)
Creates new graph scanner.
|
static opencv_core.CvGraphEdge |
opencv_core.cvFindGraphEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx)
Find edge connecting two vertices
|
static opencv_core.CvGraphEdge |
opencv_core.cvFindGraphEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static int |
opencv_core.cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx) |
static int |
opencv_core.cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx,
opencv_core.CvGraphEdge edge,
opencv_core.CvGraphEdge inserted_edge) |
static int |
opencv_core.cvGraphAddEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx,
opencv_core.CvGraphEdge edge,
org.bytedeco.javacpp.PointerPointer inserted_edge)
Link two vertices specified by indices or pointers if they
are not connected or return pointer to already existing edge
connecting the vertices.
|
static int |
opencv_core.cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static int |
opencv_core.cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx,
opencv_core.CvGraphEdge edge,
opencv_core.CvGraphEdge inserted_edge) |
static int |
opencv_core.cvGraphAddEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx,
opencv_core.CvGraphEdge edge,
org.bytedeco.javacpp.PointerPointer inserted_edge) |
static int |
opencv_core.cvGraphAddVtx(opencv_core.CvGraph graph) |
static int |
opencv_core.cvGraphAddVtx(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
opencv_core.CvGraphVtx inserted_vtx) |
static int |
opencv_core.cvGraphAddVtx(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
org.bytedeco.javacpp.PointerPointer inserted_vtx)
Adds new vertex to the graph
|
static opencv_core.CvGraphEdge |
opencv_core.cvGraphFindEdge(opencv_core.CvGraph arg1,
int arg2,
int arg3) |
static opencv_core.CvGraphEdge |
opencv_core.cvGraphFindEdgeByPtr(opencv_core.CvGraph arg1,
opencv_core.CvGraphVtx arg2,
opencv_core.CvGraphVtx arg3) |
static void |
opencv_core.cvGraphRemoveEdge(opencv_core.CvGraph graph,
int start_idx,
int end_idx)
Remove edge connecting two vertices
|
static void |
opencv_core.cvGraphRemoveEdgeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx start_vtx,
opencv_core.CvGraphVtx end_vtx) |
static int |
opencv_core.cvGraphRemoveVtx(opencv_core.CvGraph graph,
int index)
Removes vertex from the graph together with all incident edges
|
static int |
opencv_core.cvGraphRemoveVtxByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx) |
static int |
opencv_core.cvGraphVtxDegree(opencv_core.CvGraph graph,
int vtx_idx)
Count number of edges incident to the vertex
|
static int |
opencv_core.cvGraphVtxDegreeByPtr(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx) |
opencv_core.CvGraphScanner |
opencv_core.CvGraphScanner.graph(opencv_core.CvGraph graph) |
| Modifier and Type | Method and Description |
|---|---|
static opencv_core.CvGraph |
opencv_core.AbstractCvGraph.create(int graph_flags,
int header_size,
int vtx_size,
int edge_size,
opencv_core.CvMemStorage storage) |
| Modifier and Type | Method and Description |
|---|---|
static opencv_core.CvGraphScanner |
opencv_core.AbstractCvGraphScanner.create(opencv_core.CvGraph graph,
opencv_core.CvGraphVtx vtx,
int mask)
Calls cvCreateGraphScanner(), and registers a deallocator.
|
Copyright © 2018. All rights reserved.