User Tools

Site Tools


visual3d:documentation:pipeline:signal_commands:compute_distance_map

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
visual3d:documentation:pipeline:signal_commands:compute_distance_map [2024/06/17 18:22] – created sgrangervisual3d:documentation:pipeline:signal_commands:compute_distance_map [2024/07/17 15:46] (current) – created sgranger
Line 1: Line 1:
 +====== Compute Distance Map ======
  
- +===== Compute Distance Map =====
- +
- +
-====== Compute Distance Map ======+
  
 This command will color two regions of interest (ROI) on opposing segments, and calculate the weighted-average contact point on each one. The ROIs are defined in OBJ files created with DSX. This command will color two regions of interest (ROI) on opposing segments, and calculate the weighted-average contact point on each one. The ROIs are defined in OBJ files created with DSX.
Line 19: Line 17:
  
  
-===== Background =====+==== Background ====
  
 A polygonal surface mesh is defined by a set of faces, each of which is defined by a set of vertices connected by edges. Before computing distances, the Compute Distance Map command divides all faces of the ROIs into triangles, for easier processing and to guarantee that all faces are planar. In the image below, the left image highlights the vertices used to define a surface and the right image displays the triangles that define the surface: A polygonal surface mesh is defined by a set of faces, each of which is defined by a set of vertices connected by edges. Before computing distances, the Compute Distance Map command divides all faces of the ROIs into triangles, for easier processing and to guarantee that all faces are planar. In the image below, the left image highlights the vertices used to define a surface and the right image displays the triangles that define the surface:
  
-[[compute_distance_map_vertex_triangles.png]]+{{:compute_distance_map_vertex_triangles.png}}
  
 A normal vector is defined for each triangle, vertex and edge: A normal vector is defined for each triangle, vertex and edge:
  
-[[https://www.scratchapixel.com/lessons/3d-basic-rendering/introduction-to-shading/shading-normals|{{/images/thumb/7/78/compute_distance_map_normals.png/600px-compute_distance_map_normals.png?600x117}}]]+{{:normals|{{/images/thumb/7/78/compute_distance_map_normals.png}}
  
-===== Command Output =====+==== Command Output ====
  
 **** ****
  
 **** ****
-|For every Result Name specified, there will be 6 results:\\ \\ * ResultName_SegmentName[[#Minimum_Distance|_Min]]\\ * ResultName_SegmentName[[#Contact_Path|_Contact]]\\ * ResultName_SegmentName[[#Min_Vertex_Distances|_Vert]]  |  [[compute_distance_map_data_tree.png]]|+|For every Result Name specified, there will be 6 results:\\ \\ * ResultName_SegmentName[[#Minimum_Distance|_Min]]\\ * ResultName_SegmentName[[#Contact_Path|_Contact]]\\ * ResultName_SegmentName[[#Min_Vertex_Distances|_Vert]]  |  {{:compute_distance_map_data_tree.png}}|
  
 **** ****
Line 41: Line 39:
 The result for _Min and _Contact will have 4 components. The first three components are X Y Z location of the contact point in the segment coordinate system, and the fourth component is the minimum distance. You can use the [[Visual3D:Documentation:Pipeline:Signal_Commands:Transform_Data_Coordinate_System|Transform_Data_Coordinate_System]] command to transform the resulting coordinate system of the contact point. The result for _Min and _Contact will have 4 components. The first three components are X Y Z location of the contact point in the segment coordinate system, and the fourth component is the minimum distance. You can use the [[Visual3D:Documentation:Pipeline:Signal_Commands:Transform_Data_Coordinate_System|Transform_Data_Coordinate_System]] command to transform the resulting coordinate system of the contact point.
  
-==== Minimum Distance ====+=== Minimum Distance ===
  
-|The minimum distance between each triangle on one segment's ROI and the opposing segment's ROI.\\ \\ * A single distance value is calculated for each triangle, and is the smallest value of these candidates:\\   * (a) the distance from the opposing ROI to the closest of the triangle's vertices\\   * (b) the distance from the closest vertex on the opposing ROI that projects onto the face of the triangle (left image)\\   * (c) the distance from the closest vertex on the opposing ROI that projects onto an edge of the triangle (right image)  |  [[compute_distance_map_min_distance_calc.png]]|+|The minimum distance between each triangle on one segment's ROI and the opposing segment's ROI.\\ \\ * A single distance value is calculated for each triangle, and is the smallest value of these candidates:\\   * (a) the distance from the opposing ROI to the closest of the triangle's vertices\\   * (b) the distance from the closest vertex on the opposing ROI that projects onto the face of the triangle (left image)\\   * (c) the distance from the closest vertex on the opposing ROI that projects onto an edge of the triangle (right image)  |  {{:compute_distance_map_min_distance_calc.png}}|
  
-==== Contact Point ====+=== Contact Point ===
  
 The weighted minimum distance between the two segments. The weighted minimum distance between the two segments.
Line 51: Line 49:
   * Once each triangle has been assigned a minimum distance, a preliminary contact point is found by calculating a weighted average of all the triangle centers. Each center is weighted by the triangle's area and the square of its distance. The area threshold percentage (CONTACT_POINT_AREA_THRESHOLD) specifies the percentage of the total area of triangles on the ROI to be included in the calculation. This weighted-average point is usually not on the surface of the ROI, so it is projected onto the surface using the normal of the closest ROI vertex.   * Once each triangle has been assigned a minimum distance, a preliminary contact point is found by calculating a weighted average of all the triangle centers. Each center is weighted by the triangle's area and the square of its distance. The area threshold percentage (CONTACT_POINT_AREA_THRESHOLD) specifies the percentage of the total area of triangles on the ROI to be included in the calculation. This weighted-average point is usually not on the surface of the ROI, so it is projected onto the surface using the normal of the closest ROI vertex.
  
-==== Min Vertex Distances ====+=== Min Vertex Distances ===
  
 This is the minimum distance value that is used to color each vertex in the OBJ. This is the minimum distance value that is used to color each vertex in the OBJ.
Line 57: Line 55:
 **Note:** Do not click on this signal and open the data view, Visual3D will not be able to open the data view due to the number of columns. **Note:** Do not click on this signal and open the data view, Visual3D will not be able to open the data view due to the number of columns.
  
-==== Sign of the Minimum Distance ====+=== Sign of the Minimum Distance ===
  
 Any of the distances calculated by this command can be positive (the opposing ROI surfaces do not intersect) or negative (the surfaces intersect). The sign of each distance is calculated using the appropriate normal vector (triangle, edge, or vertex). For example, to determine which side of a triangle a given vertex is on, the vector from the vertex to the triangle is compared to the normal of the triangle. Any of the distances calculated by this command can be positive (the opposing ROI surfaces do not intersect) or negative (the surfaces intersect). The sign of each distance is calculated using the appropriate normal vector (triangle, edge, or vertex). For example, to determine which side of a triangle a given vertex is on, the vector from the vertex to the triangle is compared to the normal of the triangle.
  
-===== Command Dialog =====+==== Command Dialog ====
  
-|**Result Signal Information:**\\ \\ * Result Type: Derived\\ * Result Folder: Result can be stored in any folder\\ * Result Name: One result name for each region you are comparing\\ \\ **Color Map:**\\ \\ * Min Color & Value\\   * Determines the color for the minimum value\\   * All vertices with a minimum distance less than the value specified will have this color\\ * Inner Color\\   * Specifies the mid color and the gradient\\ * Max Color & Value\\   * Determines the color for the maximum value\\   * All vertices with a maximum distance greater than the value specified will have this color\\ \\ **Event Sequence:**\\ \\ * Without an event sequence the distance map will be created over all frames of data where the segments exist\\ * When an event sequence is specified the distance map will only be calculated for the specified frames (can be more time efficient to only analyze the time period of interest)\\ \\ **Regions:**\\ \\ * Segment Names: Specify the name of the segments to be compared\\ * Proximal Region & Sub Region:\\   * The regions correlate to the regions of interest created in the DSX suite\\ * Contact Point Area Threshold  |  [[distancemapdialog.png]]|+|**Result Signal Information:**\\ \\ * Result Type: Derived\\ * Result Folder: Result can be stored in any folder\\ * Result Name: One result name for each region you are comparing\\ \\ **Color Map:**\\ \\ * Min Color & Value\\   * Determines the color for the minimum value\\   * All vertices with a minimum distance less than the value specified will have this color\\ * Inner Color\\   * Specifies the mid color and the gradient\\ * Max Color & Value\\   * Determines the color for the maximum value\\   * All vertices with a maximum distance greater than the value specified will have this color\\ \\ **Event Sequence:**\\ \\ * Without an event sequence the distance map will be created over all frames of data where the segments exist\\ * When an event sequence is specified the distance map will only be calculated for the specified frames (can be more time efficient to only analyze the time period of interest)\\ \\ **Regions:**\\ \\ * Segment Names: Specify the name of the segments to be compared\\ * Proximal Region & Sub Region:\\   * The regions correlate to the regions of interest created in the DSX suite\\ * Contact Point Area Threshold  |  {{:distancemapdialog.png}}|
  
-===== Drawing the Contact Path =====+==== Drawing the Contact Path ====
  
-|You can draw the contact point and its path on the surface:  |  [[contactPath.png]]|+|You can draw the contact point and its path on the surface:  |  {{:contactPath.png}}|
  
-==== Steps ====+=== Steps ===
  
-|For every Result Name specified, there will be 6 results:\\ \\ * ResultName_SegmentName[[#Contact_Path|_Contact]]\\ * ResultName_SegmentName[[#Minimum_Distance|_Min]]\\ * ResultName_SegmentName[[#Min_Vertex_Distances|_Vert]]\\ \\ Right click on the _Min or _Contact to specify the draw properties  |  [[compute_distance_map_data_tree_right_click.png]]|+|For every Result Name specified, there will be 6 results:\\ \\ * ResultName_SegmentName[[#Contact_Path|_Contact]]\\ * ResultName_SegmentName[[#Minimum_Distance|_Min]]\\ * ResultName_SegmentName[[#Min_Vertex_Distances|_Vert]]\\ \\ Right click on the _Min or _Contact to specify the draw properties  |  {{:compute_distance_map_data_tree_right_click.png}}|
  
-|* Target Size:\\   * Size of contact path (small, medium, large or hide)\\   * Note: Size of contact path can be modified further by going to\\     * Settings -> Modify Scale of the 3D graphics Objects\\     * Modify the target size\\ * Target Color:\\   * Specify the color of the contact point\\ * Trails:\\   * Specify the color for the contact path and the number of frames before/after the current frame to draw the path\\   * Trail thickness specifies the thickness of the path  |  [[contactPath_draw_properties.png]]|+|* Target Size:\\   * Size of contact path (small, medium, large or hide)\\   * Note: Size of contact path can be modified further by going to\\     * Settings -> Modify Scale of the 3D graphics Objects\\     * Modify the target size\\ * Target Color:\\   * Specify the color of the contact point\\ * Trails:\\   * Specify the color for the contact path and the number of frames before/after the current frame to draw the path\\   * Trail thickness specifies the thickness of the path  |  {{:contactPath_draw_properties.png}}|
  
 **NOTE:** If the contact point is still too large, go to **Settings -> Modify Scale of 3D Graphics** and decrease the Target Size. **NOTE:** If the contact point is still too large, go to **Settings -> Modify Scale of 3D Graphics** and decrease the Target Size.
  
-==== Camera Settings ====+=== Camera Settings ===
  
 The skeleton toggle button on the toolbar turns segment drawings on/off: The skeleton toggle button on the toolbar turns segment drawings on/off:
Line 95: Line 93:
  
 You can set the camera perspective to lock onto a segment by going to View -> Set Camera Perspective. You can set the camera perspective to lock onto a segment by going to View -> Set Camera Perspective.
- 
- 
  
  
  
visual3d/documentation/pipeline/signal_commands/compute_distance_map.1718648560.txt.gz · Last modified: 2024/06/17 18:22 by sgranger