Samah AbuSalim
Samah AbuSalim
ok, Thank you.
what does this code do. does it compute edges? how does the current code compute the edges? `from torch_geometric.data import Data import torch_geometric.transforms as T data = Data(pos=pos, label=label, score=score)...
I have calculated the centroid of each bounding boxes, but it result to a tensor of shape pos = [2, num_bounding_boxes] like this: `Data(pos=[2, 17], pixel_values=[249, 358, 3], score=[17], edge_index=[2,...
Sir, I want to represent the angle between the bounding boxes as an edge. I calculated the centroid and pixel values of the bounding boxes. I want to ask if...
I have calculated the centroid of each bounding boxes and pixel values for each detected object. I represented each pixel values as a node and centroid as edges. I got...
Ok. Why `k=6` not other numbers?. I’m wondering if there is another way to build `edge_index` without using `KNNGraph`?
Ok. How is the distance between node pairs for each edge (`edge_attr`) calculated? When I change the `norm` to True I got different results of `edge_attr`??
Ok. I try to visualize the graph using networkx but I got the graph with randomly distances between the nodes. How can I pass the centroid which I calculated to...
thank you for your kind response. I have 800 images and I want to create a graph for each image, but I got `KeyError: 1`. this is my code: ```...
How can I solve this? Any suggestion please,