Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钟尚武
dlib
Commits
9c8c179b
Commit
9c8c179b
authored
Nov 06, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated docs
parent
c359a37d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
37 deletions
+37
-37
graph_tools.xml
docs/docs/graph_tools.xml
+32
-32
term_index.xml
docs/docs/term_index.xml
+5
-5
No files found.
docs/docs/graph_tools.xml
View file @
9c8c179b
...
...
@@ -78,8 +78,8 @@
<component>
<name>
sample_pair
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization
/sample_pair_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils
/sample_pair_abstract.h
</spec_file>
<description>
This object is intended to represent an edge in an undirected graph
which has data samples at its vertices. Therefore, it is the undirected version
...
...
@@ -96,8 +96,8 @@
<component>
<name>
ordered_sample_pair
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization
/ordered_sample_pair_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils
/ordered_sample_pair_abstract.h
</spec_file>
<description>
This object is intended to represent an edge in a directed graph
which has data samples at its vertices. Therefore, it is the directed version
...
...
@@ -109,8 +109,8 @@
<component>
<name>
find_percent_shortest_edges_randomly
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This function is a simple approximate form of
<a
href=
"#find_k_nearest_neighbors"
>
find_k_nearest_neighbors
</a>
.
Instead of checking all possible edges it randomly samples a large number of them and
...
...
@@ -127,8 +127,8 @@
<component>
<name>
find_k_nearest_neighbors
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a function which finds all the k nearest neighbors of a set of points and outputs
the result as a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
objects. It takes O(n^2) where
...
...
@@ -142,8 +142,8 @@
<component>
<name>
find_approximate_k_nearest_neighbors
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This function is a simple approximate form of
<a
href=
"#find_k_nearest_neighbors"
>
find_k_nearest_neighbors
</a>
.
Instead of checking all possible edges it randomly samples a large number of them and then performs
...
...
@@ -155,8 +155,8 @@
<component>
<name>
remove_short_edges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a simple function for removing edges with a small distance value from
a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
or
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects.
...
...
@@ -168,8 +168,8 @@
<component>
<name>
remove_duplicate_edges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a simple function for removing duplicate edges (i.e. edges that compare equal
according to ==) from
...
...
@@ -181,8 +181,8 @@
<component>
<name>
remove_long_edges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a simple function for removing edges with a large distance value from
a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
or
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects.
...
...
@@ -194,8 +194,8 @@
<component>
<name>
remove_percent_longest_edges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a simple function for removing edges with a large distance value from
a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
or
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects.
...
...
@@ -207,8 +207,8 @@
<component>
<name>
remove_percent_shortest_edges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This is a simple function for removing edges with a small distance value from
a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
or
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects.
...
...
@@ -220,8 +220,8 @@
<component>
<name>
squared_euclidean_distance
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization
/function_objects_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils
/function_objects_abstract.h
</spec_file>
<description>
This is a simple function object that computes squared euclidean distance
between two
<a
href=
"containers.html#matrix"
>
matrix
</a>
objects.
...
...
@@ -236,8 +236,8 @@
<component>
<name>
use_weights_of_one
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization
/function_objects_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils
/function_objects_abstract.h
</spec_file>
<description>
This is a simple function object that takes a single argument
and always returns 1
...
...
@@ -249,8 +249,8 @@
<component>
<name>
use_gaussian_weights
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization
/function_objects_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils
/function_objects_abstract.h
</spec_file>
<description>
This is a simple function object that takes a single argument
which should be an object similar to
<a
href=
"#sample_pair"
>
sample_pair
</a>
.
...
...
@@ -265,8 +265,8 @@
<component>
<name>
is_ordered_by_index
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This function checks if a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
or
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects is in sorted
...
...
@@ -278,8 +278,8 @@
<component>
<name>
find_neighbor_ranges
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This function takes a graph, defined by a vector of
<a
href=
"#ordered_sample_pair"
>
ordered_sample_pair
</a>
objects, and finds the
...
...
@@ -292,8 +292,8 @@
<component>
<name>
convert_unordered_to_ordered
</name>
<file>
dlib/
manifold_regularization
.h
</file>
<spec_file
link=
"true"
>
dlib/
manifold_regularization/graph_creation
_abstract.h
</spec_file>
<file>
dlib/
graph_utils
.h
</file>
<spec_file
link=
"true"
>
dlib/
graph_utils/edge_list_graphs
_abstract.h
</spec_file>
<description>
This function takes a graph, defined by a vector of
<a
href=
"#sample_pair"
>
sample_pair
</a>
objects and converts it into the equivalent
...
...
docs/docs/term_index.xml
View file @
9c8c179b
...
...
@@ -220,9 +220,9 @@
<term
file=
"graph_tools.html"
name=
"sample_pair"
/>
<term
file=
"graph_tools.html"
name=
"ordered_sample_pair"
/>
<term
file=
"dlib/
manifold_regularization
/sample_pair_abstract.h.html"
name=
"order_by_index"
/>
<term
file=
"dlib/
manifold_regularization
/sample_pair_abstract.h.html"
name=
"order_by_distance"
/>
<term
file=
"dlib/
manifold_regularization
/sample_pair_abstract.h.html"
name=
"order_by_distance_and_index"
/>
<term
file=
"dlib/
graph_utils
/sample_pair_abstract.h.html"
name=
"order_by_index"
/>
<term
file=
"dlib/
graph_utils
/sample_pair_abstract.h.html"
name=
"order_by_distance"
/>
<term
file=
"dlib/
graph_utils
/sample_pair_abstract.h.html"
name=
"order_by_distance_and_index"
/>
<term
file=
"graph_tools.html"
name=
"find_percent_shortest_edges_randomly"
/>
<term
file=
"graph_tools.html"
name=
"find_k_nearest_neighbors"
/>
<term
file=
"graph_tools.html"
name=
"remove_short_edges"
/>
...
...
@@ -234,9 +234,9 @@
<term
file=
"graph_tools.html"
name=
"remove_percent_longest_edges"
/>
<term
file=
"graph_tools.html"
name=
"remove_percent_shortest_edges"
/>
<term
file=
"graph_tools.html"
name=
"find_approximate_k_nearest_neighbors"
/>
<term
file=
"dlib/
manifold_regularization/graph_creation
_abstract.h.html"
name=
"contains_duplicate_pairs"
/>
<term
file=
"dlib/
graph_utils/edge_list_graphs
_abstract.h.html"
name=
"contains_duplicate_pairs"
/>
<term
name=
"max_index_plus_one"
>
<term
link=
"dlib/
manifold_regularization/graph_creation
_abstract.h.html#max_index_plus_one"
name=
"for graphs"
/>
<term
link=
"dlib/
graph_utils/edge_list_graphs
_abstract.h.html#max_index_plus_one"
name=
"for graphs"
/>
<term
link=
"dlib/svm/sparse_vector_abstract.h.html#max_index_plus_one"
name=
"for sparse vectors"
/>
</term>
<term
file=
"dlib/svm/sparse_vector_abstract.h.html"
name=
"sparse_matrix_vector_multiply"
/>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment