Skip to content

Test #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Test
16 changes: 8 additions & 8 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@

# -- Project information -----------------------------------------------------

project = 'Image-EMA project'
copyright = '2019, Janko Slavič, Domen Gorjup, Klemen Zaletelj'
author = 'Janko Slavič, Domen Gorjup, Klemen Zaletelj'
project = 'OpenSDproject'
copyright = '2023, Marko Gantar'
author = 'Marko Gantar'

# The short X.Y version
version = ''
Expand Down Expand Up @@ -133,8 +133,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'Image-EMAproject.tex', 'Image-EMA project Documentation',
'Janko Slavič, Domen Gorjup, Klemen Zaletelj', 'manual'),
(master_doc, 'OpenSDproject.tex', 'OpenSDproject Documentation',
'Marko Gantar', 'manual'),
]


Expand All @@ -143,7 +143,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'image-emaproject', 'Image-EMA project Documentation',
(master_doc, 'OpenSDproject', 'OpenSDproject Documentation',
[author], 1)
]

Expand All @@ -154,8 +154,8 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'Image-EMAproject', 'Image-EMA project Documentation',
author, 'Image-EMAproject', 'One line description of project.',
(master_doc, 'OpenSDproject', 'OpenSDproject Documentation',
author, 'OpenSDproject', 'One line description of project.',
'Miscellaneous'),
]

Expand Down
2 changes: 2 additions & 0 deletions opensd_project/visualize.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ def show_reference_image(images, points=[], roi_size=None, bit_depth=12):
Returns:
fig: Matplotlib figure.
"""
# test comment
fig, ax = plt.subplots()
ax.imshow(images[0], cmap='gray', vmin=0, vmax=2**bit_depth)

Expand Down Expand Up @@ -50,6 +51,7 @@ def animate_video(images, fps=30, bit_depth=12):
# display data for first image
im = plt.imshow(images[0], cmap='gray', vmin=0, vmax=2**bit_depth, animated=True)

# added second comment
def updatefig(i):
im.set_array(images[i])
return im,
Expand Down
5 changes: 4 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@ scipy>=1.0.0
tqdm>=4.10.0
imageio>=2.2.0
piexif>=1.0.13
pyMRAW
pyMRAW

sphinx
sphinx/rtd/theme