Skip to content

tutorials/lodestar-A - #506

Merged
giovannivolpe merged 4 commits into
developfrom
al/lodestar-A
Jul 29, 2026
Merged

tutorials/lodestar-A#506
giovannivolpe merged 4 commits into
developfrom
al/lodestar-A

Conversation

@Pwhsky

@Pwhsky Pwhsky commented Jul 20, 2026

Copy link
Copy Markdown
Collaborator

updated lodestar tutorial A

@edudc

edudc commented Jul 22, 2026

Copy link
Copy Markdown
Contributor

There's a small typo under 4. Training LodeSTAR that says "Initialie". Otherwise lgm.

@foca13

foca13 commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

Suggestions

  • Specify that this example contains 10 images:
    In mardown cell
  1. Loading the Images of Quantum Dots
    The data is found in the tutorials/2-examples/assets directory as an array with the format (time, height, width). This example contains 10 imatges
    Then
    images = np.load("./assets/image_quantum_dots.npy")
    images.shape
  • Plot the final predictions in a single 2x5 plot, something like:
    fig, axes = plt.subplots(2, 5, figsize=(25, 8))

for i, (frame, detections) in enumerate(zip(images_tensor, all_detections)):
ax = axes[i // 5, i % 5]
img = frame.squeeze(0).detach().cpu()
ax.imshow(img, aspect='auto')
ax.scatter(
detections[:, 1], detections[:, 0], marker="+", c="r", alpha=0.5
)
ax.set_xlim(0, img.shape[1])
ax.set_ylim(img.shape[0], 0) # inverted y, since image origin is top-left
ax.axis("off")
ax.set_title(f"Frame {i}")

plt.show()

@giovannivolpe
giovannivolpe merged commit a970611 into develop Jul 29, 2026
55 checks passed
@giovannivolpe
giovannivolpe deleted the al/lodestar-A branch July 29, 2026 03:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants