Skip to content

Commit ba8511a

Browse files
committed
Doc: update screenshots
1 parent c73f4e1 commit ba8511a

13 files changed

+31
-31
lines changed

doc/images/shots/i_beautiful.png

-337 Bytes
Loading

doc/images/shots/i_edit.png

-785 Bytes
Loading

doc/images/shots/i_file.png

788 Bytes
Loading

doc/images/shots/i_operation.png

366 Bytes
Loading

doc/images/shots/s_analysis.png

962 Bytes
Loading

doc/images/shots/s_app_at_startup.png

-841 Bytes
Loading

doc/images/shots/s_beautiful.png

-656 Bytes
Loading

doc/images/shots/s_edit.png

-785 Bytes
Loading

doc/images/shots/s_file.png

761 Bytes
Loading

doc/images/shots/s_operation.png

346 Bytes
Loading

doc/images/shots/s_processing.png

1020 Bytes
Loading

doc/validation_status_image.csv

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
:py:func:`compute_abs <cdl.computation.image.compute_abs>`,Compute absolute value with :py:data:`numpy.absolute`,`test_image_abs <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L238>`_
1+
:py:func:`compute_abs <cdl.computation.image.compute_abs>`,Compute absolute value with :py:data:`numpy.absolute`,`test_image_abs <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L239>`_
22
:py:func:`compute_addition <cdl.computation.image.compute_addition>`,Add **dst** and **src** images and return **dst** image modified in place,`test_image_addition <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L56>`_
33
:py:func:`compute_addition_constant <cdl.computation.image.compute_addition_constant>`,Add **dst** and a constant value and return the new result image object,`test_image_addition_constant <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L140>`_
44
:py:func:`compute_arithmetic <cdl.computation.image.compute_arithmetic>`,Compute arithmetic operation on two images,`test_image_arithmetic <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L190>`_
5-
:py:func:`compute_astype <cdl.computation.image.compute_astype>`,Convert image data type with :py:func:`cdl.algorithms.datatypes.clip_astype`,`test_image_astype <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L278>`_
5+
:py:func:`compute_astype <cdl.computation.image.compute_astype>`,Convert image data type with :py:func:`cdl.algorithms.datatypes.clip_astype`,`test_image_astype <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L279>`_
66
:py:func:`compute_average_profile <cdl.computation.image.compute_average_profile>`,Compute horizontal or vertical average profile,`test_average_profile <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/profile_unit_test.py#L105>`_
77
:py:func:`compute_binning <cdl.computation.image.compute_binning>`,Binning function on data with :py:func:`cdl.algorithms.image.binning`,`test_binning <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/binning_unit_test.py#L70>`_
88
:py:func:`compute_butterworth <cdl.computation.image.compute_butterworth>`,Compute Butterworth filter with :py:func:`skimage.filters.butterworth`,`test_butterworth <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/processing_unit_test.py#L564>`_
@@ -14,20 +14,20 @@
1414
:py:func:`compute_division <cdl.computation.image.compute_division>`,Compute division between two images,`test_image_division <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L104>`_
1515
:py:func:`compute_division_constant <cdl.computation.image.compute_division_constant>`,Divide an image by a constant value and return the new result image object,`test_image_division_constant <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L178>`_
1616
:py:func:`compute_enclosing_circle <cdl.computation.image.compute_enclosing_circle>`,Compute minimum enclosing circle,N/A
17-
:py:func:`compute_exp <cdl.computation.image.compute_exp>`,Compute exponential with :py:data:`numpy.exp`,`test_image_exp <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L299>`_
17+
:py:func:`compute_exp <cdl.computation.image.compute_exp>`,Compute exponential with :py:data:`numpy.exp`,`test_image_exp <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L300>`_
1818
:py:func:`compute_fft <cdl.computation.image.compute_fft>`,Compute FFT with :py:func:`cdl.algorithms.image.fft2d`,`test_image_fft <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/fft2d_unit_test.py#L47>`_
1919
:py:func:`compute_flatfield <cdl.computation.image.compute_flatfield>`,Compute flat field correction with :py:func:`cdl.algorithms.image.flatfield`,N/A
20-
:py:func:`compute_fliph <cdl.computation.image.compute_fliph>`,Flip data horizontally with :py:func:`numpy.fliplr`,`test_image_fliph <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L345>`_
21-
:py:func:`compute_flipv <cdl.computation.image.compute_flipv>`,Flip data vertically with :py:func:`numpy.flipud`,`test_image_flipv <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L357>`_
20+
:py:func:`compute_fliph <cdl.computation.image.compute_fliph>`,Flip data horizontally with :py:func:`numpy.fliplr`,`test_image_fliph <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L346>`_
21+
:py:func:`compute_flipv <cdl.computation.image.compute_flipv>`,Flip data vertically with :py:func:`numpy.flipud`,`test_image_flipv <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L358>`_
2222
:py:func:`compute_gaussian_filter <cdl.computation.image.compute_gaussian_filter>`,Compute gaussian filter with :py:func:`scipy.ndimage.gaussian_filter`,`test_image_gaussian_filter <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/processing_unit_test.py#L148>`_
2323
:py:func:`compute_histogram <cdl.computation.image.compute_histogram>`,"Compute histogram of the image data, with :py:func:`numpy.histogram`",N/A
2424
:py:func:`compute_hough_circle_peaks <cdl.computation.image.compute_hough_circle_peaks>`,Compute Hough circles,N/A
2525
:py:func:`compute_ifft <cdl.computation.image.compute_ifft>`,Compute inverse FFT with :py:func:`cdl.algorithms.image.ifft2d`,`test_image_ifft <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/fft2d_unit_test.py#L63>`_
26-
:py:func:`compute_im <cdl.computation.image.compute_im>`,Compute imaginary part with :py:func:`numpy.imag`,`test_image_im <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L260>`_
26+
:py:func:`compute_im <cdl.computation.image.compute_im>`,Compute imaginary part with :py:func:`numpy.imag`,`test_image_im <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L261>`_
2727
:py:func:`compute_inverse <cdl.computation.image.compute_inverse>`,Compute the inverse of an image and return the new result image object,`test_image_inverse <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L225>`_
2828
:py:func:`compute_line_profile <cdl.computation.image.compute_line_profile>`,Compute horizontal or vertical profile,`test_line_profile <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/profile_unit_test.py#L60>`_
29-
:py:func:`compute_log10 <cdl.computation.image.compute_log10>`,Compute log10 with :py:data:`numpy.log10`,`test_image_log10 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L311>`_
30-
:py:func:`compute_logp1 <cdl.computation.image.compute_logp1>`,Compute log10(z+n) with :py:data:`numpy.log10`,`test_image_logp1 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L323>`_
29+
:py:func:`compute_log10 <cdl.computation.image.compute_log10>`,Compute log10 with :py:data:`numpy.log10`,`test_image_log10 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L312>`_
30+
:py:func:`compute_logp1 <cdl.computation.image.compute_logp1>`,Compute log10(z+n) with :py:data:`numpy.log10`,`test_image_logp1 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L324>`_
3131
:py:func:`compute_magnitude_spectrum <cdl.computation.image.compute_magnitude_spectrum>`,Compute magnitude spectrum,`test_image_magnitude_spectrum <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/fft2d_unit_test.py#L71>`_
3232
:py:func:`compute_moving_average <cdl.computation.image.compute_moving_average>`,Compute moving average with :py:func:`scipy.ndimage.uniform_filter`,`test_image_moving_average <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/processing_unit_test.py#L159>`_
3333
:py:func:`compute_moving_median <cdl.computation.image.compute_moving_median>`,Compute moving median with :py:func:`scipy.ndimage.median_filter`,`test_image_moving_median <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/processing_unit_test.py#L171>`_
@@ -39,11 +39,11 @@
3939
:py:func:`compute_psd <cdl.computation.image.compute_psd>`,Compute power spectral density,`test_image_psd <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/fft2d_unit_test.py#L95>`_
4040
:py:func:`compute_quadratic_difference <cdl.computation.image.compute_quadratic_difference>`,Compute quadratic difference between two images,`test_image_quadratic_difference <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L80>`_
4141
:py:func:`compute_radial_profile <cdl.computation.image.compute_radial_profile>`,Compute radial profile around the centroid,N/A
42-
:py:func:`compute_re <cdl.computation.image.compute_re>`,Compute real part with :py:func:`numpy.real`,`test_image_re <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L249>`_
42+
:py:func:`compute_re <cdl.computation.image.compute_re>`,Compute real part with :py:func:`numpy.real`,`test_image_re <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L250>`_
4343
:py:func:`compute_resize <cdl.computation.image.compute_resize>`,Zooming function with :py:func:`scipy.ndimage.zoom`,N/A
44-
:py:func:`compute_rotate <cdl.computation.image.compute_rotate>`,Rotate data with :py:func:`scipy.ndimage.rotate`,`test_image_rotate <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L386>`_
45-
:py:func:`compute_rotate270 <cdl.computation.image.compute_rotate270>`,Rotate data 270° with :py:func:`numpy.rot90`,`test_image_rotate270 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L380>`_
46-
:py:func:`compute_rotate90 <cdl.computation.image.compute_rotate90>`,Rotate data 90° with :py:func:`numpy.rot90`,`test_image_rotate90 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L374>`_
44+
:py:func:`compute_rotate <cdl.computation.image.compute_rotate>`,Rotate data with :py:func:`scipy.ndimage.rotate`,`test_image_rotate <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L387>`_
45+
:py:func:`compute_rotate270 <cdl.computation.image.compute_rotate270>`,Rotate data 270° with :py:func:`numpy.rot90`,`test_image_rotate270 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L381>`_
46+
:py:func:`compute_rotate90 <cdl.computation.image.compute_rotate90>`,Rotate data 90° with :py:func:`numpy.rot90`,`test_image_rotate90 <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/operation_unit_test.py#L375>`_
4747
:py:func:`compute_segment_profile <cdl.computation.image.compute_segment_profile>`,Compute segment profile,`test_segment_profile <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/profile_unit_test.py#L87>`_
4848
:py:func:`compute_stats <cdl.computation.image.compute_stats>`,Compute statistics on an image,`test_image_stats_unit <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/common/stat_unit_test.py#L116>`_
4949
:py:func:`compute_swap_axes <cdl.computation.image.compute_swap_axes>`,Swap image axes with :py:func:`numpy.transpose`,`test_image_swap_axes <https://github.com./DataLab-Platform/DataLab/blob/v0.19.0/cdl/tests/features/images/processing_unit_test.py#L81>`_

0 commit comments

Comments
 (0)