forked from ZhengLiu-cart/IK_qp
update teh contour plot method
This commit is contained in:
@@ -8,7 +8,7 @@ import pandas as pd
|
|||||||
# --------------------------------------------------
|
# --------------------------------------------------
|
||||||
# 1. Load the data
|
# 1. Load the data
|
||||||
# --------------------------------------------------
|
# --------------------------------------------------
|
||||||
file_name = "rm75b_comfort_workspace_collision_minisci.csv"
|
file_name = "workspace minisci collision.csv"
|
||||||
csv_path = Path(file_name)
|
csv_path = Path(file_name)
|
||||||
|
|
||||||
# The file has no column names, so header=None is important.
|
# The file has no column names, so header=None is important.
|
||||||
@@ -16,13 +16,21 @@ df_csv = pd.read_csv(
|
|||||||
csv_path,
|
csv_path,
|
||||||
)
|
)
|
||||||
rate_res = df_csv.iloc[:, :4]
|
rate_res = df_csv.iloc[:, :4]
|
||||||
|
try:
|
||||||
rate_res_sort = rate_res.sort_values('z').reset_index(drop=True)
|
rate_res_sort = rate_res.sort_values('z').reset_index(drop=True)
|
||||||
|
except:
|
||||||
|
rate_res_sort = rate_res
|
||||||
|
|
||||||
DECIMALS = 4
|
DECIMALS = 4
|
||||||
|
|
||||||
|
try:
|
||||||
x_unique = np.round(rate_res_sort['x'], DECIMALS).unique()
|
x_unique = np.round(rate_res_sort['x'], DECIMALS).unique()
|
||||||
y_unique = np.round(rate_res_sort['y'], DECIMALS).unique()
|
y_unique = np.round(rate_res_sort['y'], DECIMALS).unique()
|
||||||
z_unique = np.round(rate_res_sort['z'], DECIMALS).unique()
|
z_unique = np.round(rate_res_sort['z'], DECIMALS).unique()
|
||||||
|
except:
|
||||||
|
x_unique = np.round(rate_res_sort.iloc[:,0], DECIMALS).unique()
|
||||||
|
y_unique = np.round(rate_res_sort.iloc[:, 1], DECIMALS).unique()
|
||||||
|
z_unique = np.round(rate_res_sort.iloc[:, 2], DECIMALS).unique()
|
||||||
|
|
||||||
nx, ny, nz = len(x_unique), len(y_unique), len(z_unique)
|
nx, ny, nz = len(x_unique), len(y_unique), len(z_unique)
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,109 @@
|
|||||||
|
from pathlib import Path
|
||||||
|
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
import numpy as np
|
||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
|
||||||
|
# --------------------------------------------------
|
||||||
|
# 1. Load the data
|
||||||
|
# --------------------------------------------------
|
||||||
|
file_name = "workspace minisci collision.csv"
|
||||||
|
csv_path = Path(file_name)
|
||||||
|
|
||||||
|
# The file has no column names, so header=None is important.
|
||||||
|
df_csv = pd.read_csv(
|
||||||
|
csv_path,
|
||||||
|
header=None, # the file has no header row
|
||||||
|
names=['x', 'y', 'z', 'ik_success_rate'] # assign names
|
||||||
|
)
|
||||||
|
|
||||||
|
rate_res = df_csv.iloc[:, :4]
|
||||||
|
try:
|
||||||
|
rate_res_sort = rate_res.sort_values('z').reset_index(drop=True)
|
||||||
|
except:
|
||||||
|
rate_res_sort = rate_res
|
||||||
|
|
||||||
|
DECIMALS = 4
|
||||||
|
|
||||||
|
try:
|
||||||
|
x_unique = np.round(rate_res_sort['x'], DECIMALS).unique()
|
||||||
|
y_unique = np.round(rate_res_sort['y'], DECIMALS).unique()
|
||||||
|
z_unique = np.round(rate_res_sort['z'], DECIMALS).unique()
|
||||||
|
except:
|
||||||
|
x_unique = np.round(rate_res_sort.iloc[:,0], DECIMALS).unique()
|
||||||
|
y_unique = np.round(rate_res_sort.iloc[:, 1], DECIMALS).unique()
|
||||||
|
z_unique = np.round(rate_res_sort.iloc[:, 2], DECIMALS).unique()
|
||||||
|
|
||||||
|
nx, ny, nz = len(x_unique), len(y_unique), len(z_unique)
|
||||||
|
|
||||||
|
|
||||||
|
ik_rates = rate_res_sort.to_numpy()
|
||||||
|
|
||||||
|
# --------------------------------------------------
|
||||||
|
# 2. Create an output directory
|
||||||
|
# --------------------------------------------------
|
||||||
|
output_dir = Path(file_name.split(".")[0])
|
||||||
|
output_dir.mkdir(exist_ok=True)
|
||||||
|
|
||||||
|
|
||||||
|
# --------------------------------------------------
|
||||||
|
# 3. Use the same colour scale for every z-plane
|
||||||
|
# --------------------------------------------------
|
||||||
|
df = rate_res_sort
|
||||||
|
value_min = df["ik_success_rate"].min()
|
||||||
|
value_max = df["ik_success_rate"].max()
|
||||||
|
|
||||||
|
# More levels give a smoother-looking contour plot.
|
||||||
|
levels = np.linspace(value_min, value_max, 51)
|
||||||
|
|
||||||
|
|
||||||
|
# --------------------------------------------------
|
||||||
|
# 4. Draw one contour plot for each z-plane
|
||||||
|
# --------------------------------------------------
|
||||||
|
for z_value, plane in df.groupby("z", sort=True):
|
||||||
|
|
||||||
|
# Rows become y-coordinates, columns become x-coordinates.
|
||||||
|
grid = plane.pivot(index="y", columns="x", values="ik_success_rate")
|
||||||
|
|
||||||
|
x = grid.columns.to_numpy()
|
||||||
|
y = grid.index.to_numpy()
|
||||||
|
ik_grid = grid.to_numpy()
|
||||||
|
|
||||||
|
X, Y = np.meshgrid(x, y)
|
||||||
|
|
||||||
|
fig, ax = plt.subplots(figsize=(7, 6))
|
||||||
|
|
||||||
|
contour = ax.contourf(
|
||||||
|
X,
|
||||||
|
Y,
|
||||||
|
ik_grid,
|
||||||
|
levels=levels,
|
||||||
|
cmap="viridis",
|
||||||
|
extend="both",
|
||||||
|
)
|
||||||
|
|
||||||
|
highlight_levels = [0.6, 0.7]
|
||||||
|
# Only plot if the levels are within the data range (optional)
|
||||||
|
if value_min <= 0.6 <= value_max or value_min <= 0.7 <= value_max:
|
||||||
|
lines = ax.contour(X, Y, ik_grid, levels=highlight_levels,
|
||||||
|
colors='red', linewidths=2, linestyles='solid')
|
||||||
|
# Optionally label the lines
|
||||||
|
ax.clabel(lines, inline=True, fontsize=10, fmt='%1.1f')
|
||||||
|
|
||||||
|
|
||||||
|
colorbar = fig.colorbar(contour, ax=ax)
|
||||||
|
colorbar.set_label("IK rate")
|
||||||
|
|
||||||
|
ax.set_title(f"IK rate at z = {z_value:.2f}")
|
||||||
|
ax.set_xlabel("x")
|
||||||
|
ax.set_ylabel("y")
|
||||||
|
ax.set_aspect("equal")
|
||||||
|
|
||||||
|
fig.tight_layout()
|
||||||
|
|
||||||
|
output_path = output_dir / f"ik_contour_z_{z_value:.2f}.png"
|
||||||
|
fig.savefig(output_path, dpi=200, bbox_inches="tight")
|
||||||
|
plt.close(fig)
|
||||||
|
|
||||||
|
print(f"Plots saved to: {output_dir.resolve()}")
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -47,6 +47,12 @@ from Robotic_Arm.rm_robot_interface import *
|
|||||||
import time
|
import time
|
||||||
from math import radians, degrees, pi, cos, sin
|
from math import radians, degrees, pi, cos, sin
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Cartesian workspace grid, in meters.
|
# Cartesian workspace grid, in meters.
|
||||||
# Adjust according to your robot placement and task.
|
# Adjust according to your robot placement and task.
|
||||||
X_RANGE = (-0.7, 0.7)
|
X_RANGE = (-0.7, 0.7)
|
||||||
@@ -57,6 +63,17 @@ GRID_RESOLUTION = 0.05 # 5 cm. Use 0.02 for finer but slower.
|
|||||||
|
|
||||||
num_orientations = 120
|
num_orientations = 120
|
||||||
|
|
||||||
|
tool_name = "minisci"
|
||||||
|
|
||||||
|
output_csv = "rm75b_comfort_workspace.csv"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# Comfort thresholds
|
# Comfort thresholds
|
||||||
MIN_JOINT_MARGIN = 0.05 # 15% away from joint limits
|
MIN_JOINT_MARGIN = 0.05 # 15% away from joint limits
|
||||||
MAX_CONDITION_NUMBER = 150.0
|
MAX_CONDITION_NUMBER = 150.0
|
||||||
@@ -89,7 +106,7 @@ tools_in_ee = {
|
|||||||
ub = np.array([179.0, 129.0, 179.0, 134, 179.0, 127.0, 359.0])/180*pi
|
ub = np.array([179.0, 129.0, 179.0, 134, 179.0, 127.0, 359.0])/180*pi
|
||||||
lb = -ub
|
lb = -ub
|
||||||
|
|
||||||
tool_name = "minisci"
|
|
||||||
|
|
||||||
URDF_PATH = str(parent_dir) + '/urdf_rm75/RM75-B.urdf'
|
URDF_PATH = str(parent_dir) + '/urdf_rm75/RM75-B.urdf'
|
||||||
MESH_DIR = str(Path(URDF_PATH).parent)
|
MESH_DIR = str(Path(URDF_PATH).parent)
|
||||||
@@ -733,7 +750,7 @@ def plot_comfortable_only(df):
|
|||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
df = evaluate_workspace()
|
df = evaluate_workspace()
|
||||||
|
|
||||||
output_csv = "rm75b_comfort_workspace.csv"
|
|
||||||
df.to_csv(output_csv, index=False)
|
df.to_csv(output_csv, index=False)
|
||||||
|
|
||||||
print(f"\nSaved result to: {output_csv}")
|
print(f"\nSaved result to: {output_csv}")
|
||||||
|
|||||||
Reference in New Issue
Block a user