Skip to content

Commit b473bc8

Browse files
authored
Merge pull request #2 from klemengit/main
Added title and x, y labels to the plot.
2 parents 65713b1 + d9d9985 commit b473bc8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

opensd_project/visualize.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def show_reference_image(images, points=[], roi_size=None, bit_depth=12):
2424
if points:
2525
ax.scatter(np.array(points)[:, 1], np.array(points)[:, 0], marker='.', color='b')
2626
ax.set_title('Reference image with selected points')
27-
ax.set_xlabel('x^2')
28-
ax.set_ylabel('y**2')
27+
ax.set_xlabel('X')
28+
ax.set_ylabel('Y')
2929

3030
if roi_size is not None:
3131
for point in np.array(points):

0 commit comments

Comments
 (0)