Skip to content

Commit 6cd05f0

Browse files
committed
add comments
1 parent 7b1065e commit 6cd05f0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/algorithm/APRConverter.hpp

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ class APRConverter {
136136
template<typename T>
137137
bool check_input_dimensions(PixelData<T> &input_image);
138138

139-
void initPipelineMemory(int y_num,int x_num = 1,int z_num = 1);
139+
void initPipelineMemory(int y_num, int x_num = 1, int z_num = 1);
140140

141141
};
142142

@@ -394,6 +394,8 @@ void APRConverter<ImageType>::generateDatastructures(APR& aAPR){
394394

395395
/**
396396
* Main method for constructing the input steps to the computation to the APR before parameters are applied.
397+
*
398+
* Note: currently only used by the python wrappers for interactive parameter selection
397399
*/
398400
template<typename ImageType> template<typename T>
399401
inline bool APRConverter<ImageType>::get_lrf(APR &aAPR, PixelData<T>& input_image) {
@@ -423,6 +425,8 @@ inline bool APRConverter<ImageType>::get_lrf(APR &aAPR, PixelData<T>& input_imag
423425

424426
/**
425427
* Main method for constructing the input steps to the computation to the APR before parameters are applied.
428+
*
429+
* Note: currently only used by the python wrappers for interactive parameter selection
426430
*/
427431
template<typename ImageType>
428432
inline bool APRConverter<ImageType>::get_ds(APR &aAPR) {

0 commit comments

Comments
 (0)