What are relational attribute graphs?

What are the data structures? Can someone point out any links or books where I can learn more about them.

+4
source share
3 answers

You can also check out this article . From the DVK answer and this link, it sounds like it's normal graphics, but with “attributes” at the nodes and edges. For example, if you tried to create an image processor, you can first build a graph in which each node represents a clearly colored area (for example, a person’s face against a shirt), and then the edges represent visual adjacency (probably the face / neck is adjacent to both shirt, and to the background of the image).

Then you must assign attributes to the elements of the graph. The attribute for each region (node) can be its predominant color, and the attribute for each edge will be how many of their circles the respective regions share.

As another example, you see a color graph with edge weights - a simple example of an attribute graph.

Perhaps I could be more helpful with a bit more information about why you look in ARG, as they are pretty broadly defined.

+5
source

An explanation can be found in the document entitled “Recognition of Morphological Forms of Attributive Relational Graphs”, at the beginning of the section “3 Creating an Attributive Relational Graph”

In addition, the Doxygen implementation document can be found here:

http://brainvisa.info/doc/graph-3.2/doxygen/classGraph.html

+2
source

The correct URL for the Doxygen document to implement is:

http://brainvisa.info/doc/graph-4.2/doxygen/classGraph.html

(schedule-4.2, not schedule-3.2)

+1
source

Source: https://habr.com/ru/post/1307622/


All Articles