@@ -210,7 +210,7 @@ def process_angle(self, value, range_end=None):
210210 range_end : int, optional
211211 Contains the end of the range, by default None.
212212
213- Notes:
213+ Notes
214214 -----
215215 Previous function name : angle_select().
216216 """
@@ -236,7 +236,7 @@ def process_channel(self, value, range_end=None):
236236 range_end : int, optional
237237 Contains the end of the range, by default None.
238238
239- Notes:
239+ Notes
240240 -----
241241 Previous function name : channel_select().
242242 """
@@ -262,7 +262,7 @@ def process_illumination(self, value, range_end=None):
262262 range_end : int, optional
263263 Contains the end of the range, by default None.
264264
265- Notes:
265+ Notes
266266 -----
267267 Previous function name : illumination_select().
268268 """
@@ -288,7 +288,7 @@ def process_tile(self, value, range_end=None):
288288 range_end : int, optional
289289 Contains the end of the range, by default None.
290290
291- Notes:
291+ Notes
292292 -----
293293 Previous function name : tile_select().
294294 """
@@ -314,7 +314,7 @@ def process_timepoint(self, value, range_end=None):
314314 range_end : int, optional
315315 Contains the end of the range, by default None.
316316
317- Notes:
317+ Notes
318318 -----
319319 Previous function name : timepoint_select().
320320 """
@@ -609,7 +609,7 @@ def check_definition_option_ang_ill(self, value):
609609 }
610610
611611 def set_angle_definition (self , value ):
612- """Set the value for the angle definition
612+ """Set the value for the angle definition.
613613
614614 Parameters
615615 ----------
@@ -623,7 +623,7 @@ def set_angle_definition(self, value):
623623 )
624624
625625 def set_channel_definition (self , value ):
626- """Set the value for the channel definition
626+ """Set the value for the channel definition.
627627
628628 Parameters
629629 ----------
@@ -638,7 +638,7 @@ def set_channel_definition(self, value):
638638 )
639639
640640 def set_illumination_definition (self , value ):
641- """Set the value for the illumination definition
641+ """Set the value for the illumination definition.
642642
643643 Parameters
644644 ----------
@@ -655,7 +655,7 @@ def set_illumination_definition(self, value):
655655 )
656656
657657 def set_tile_definition (self , value ):
658- """Set the value for the tile_definition
658+ """Set the value for the tile_definition.
659659
660660 Parameters
661661 ----------
@@ -669,7 +669,7 @@ def set_tile_definition(self, value):
669669 )
670670
671671 def set_timepoint_definition (self , value ):
672- """Set the value for the time_point_definition
672+ """Set the value for the time_point_definition.
673673
674674 Parameters
675675 ----------
@@ -720,6 +720,7 @@ def check_processing_input(value, range_end):
720720 Contains the list of input dimensions, the first input dimension of a range or a single channel
721721 range_end : int or None
722722 Contains the end of the range if need be
723+
723724 Returns
724725 -------
725726 str
@@ -841,8 +842,8 @@ def define_dataset_auto(
841842 subsampling_factors = None ,
842843 hdf5_chunk_sizes = None ,
843844):
844- """Will run the corresponding " Define Dataset" using the "Auto-Loader"
845- option.
845+ """Define a dataset using the Autoloader or Multi-View loader.
846+
846847 If the series is tiles, will run "Define Dataset...", otherwise will run
847848 "Define Multi-View Dataset...".
848849
@@ -1022,8 +1023,10 @@ def resave_as_h5(
10221023 XML input file.
10231024 output_h5_file_path : str
10241025 Export path for the output file including the `.xml `extension.
1025- timepoints : str, optional
1026- The timepoints that should be exported, by default `All Timepoints`.
1026+ processing_opts : imcflibs.imagej.bdv.ProcessingOptions, optional
1027+ The `ProcessingOptions` object defining parameters for the run. Will
1028+ fall back to the defaults defined in the corresponding class if the
1029+ parameter is `None` or skipped.
10271030 timepoints_per_partition : int, optional
10281031 How many timepoints to export per partition, by default `1`.
10291032 use_deflate_compression : bool, optional
@@ -1308,10 +1311,10 @@ def detect_interest_points(
13081311 ----------
13091312 project_path : str
13101313 Path to the `.xml` project.
1311- process_timepoint : str , optional
1312- Timepoint to be processed, by default `All Timepoints`.
1313- process_channel : str, optional
1314- Channel to be processed, by default `All channels` .
1314+ processing_opts : imcflibs.imagej.bdv.ProcessingOptions , optional
1315+ The `ProcessingOptions` object defining parameters for the run. Will
1316+ fall back to the defaults defined in the corresponding class if the
1317+ parameter is `None` or skipped .
13151318 sigma : float, optional
13161319 Minimum sigma for interest points detection, by default `1.8`.
13171320 threshold : float, optional
@@ -1366,14 +1369,11 @@ def interest_points_registration(
13661369 ----------
13671370 project_path : str
13681371 Path to the `.xml` project.
1369- process_timepoint : str, optional
1370- Timepoint to be processed, by default `All Timepoints`.
1371- process_channel : str, optional
1372- Channels to be used for performing the registration. By default, all
1373- channels are taken into account, however this behavior could be
1374- undesirable if only one channel is adequate (e.g. beads or other useful
1375- fiducials). To restrict registration to a specific channel, provide the
1376- channel name using this parameter. By default `All channels`.
1372+ processing_opts : imcflibs.imagej.bdv.ProcessingOptions, optional
1373+ The `ProcessingOptions` object defining parameters for the run. Will
1374+ fall back to the defaults defined in the corresponding class if the
1375+ parameter is `None` or skipped. This controls which angles, channels,
1376+ illuminations, tiles and timepoints are processed.
13771377 rigid_timepoints : bool, optional
13781378 If set to `True` each timepoint will be considered as a rigid unit
13791379 (useful e.g. if spatial registration has already been performed before).
0 commit comments