@@ -239,6 +239,7 @@ where
239
239
///
240
240
/// An Array with pixel values loaded from the image
241
241
#[ allow( unused_mut) ]
242
+ #[ allow( clippy:: match_wild_err_arm) ]
242
243
pub fn load_image < T > ( filename : String , is_color : bool ) -> Array < T >
243
244
where
244
245
T : HasAfEnum + RealNumber ,
@@ -282,6 +283,7 @@ where
282
283
///
283
284
/// An Array with pixel values loaded from the image
284
285
#[ allow( unused_mut) ]
286
+ #[ allow( clippy:: match_wild_err_arm) ]
285
287
pub fn load_image_native < T > ( filename : String ) -> Array < T >
286
288
where
287
289
T : HasAfEnum + ImageNativeType ,
@@ -309,6 +311,7 @@ where
309
311
/// - `filename` is the abolute path(includes filename) at which input Array is going to be saved
310
312
/// - `input` is the Array to be stored into the image file
311
313
#[ allow( unused_mut) ]
314
+ #[ allow( clippy:: match_wild_err_arm) ]
312
315
pub fn save_image < T > ( filename : String , input : & Array < T > )
313
316
where
314
317
T : HasAfEnum + RealNumber ,
@@ -340,6 +343,7 @@ where
340
343
/// - `filename` is name of file to be saved
341
344
/// - `input` is the Array to be saved. Should be U8 for saving 8-bit image, U16 for 16-bit image, and F32 for 32-bit image.
342
345
#[ allow( unused_mut) ]
346
+ #[ allow( clippy:: match_wild_err_arm) ]
343
347
pub fn save_image_native < T > ( filename : String , input : & Array < T > )
344
348
where
345
349
T : HasAfEnum + ImageNativeType ,
@@ -1273,6 +1277,7 @@ hsvrgb_func_def!("RGB to HSV color space conversion", rgb2hsv, af_rgb2hsv);
1273
1277
/// 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 0 0 0 0 0
1274
1278
/// 16 17 18 19 0 21 22 23 24 0 26 27 28 29 0 31 32 33 34 0 0 0 0 0 0
1275
1279
/// ```
1280
+ #[ allow( clippy:: too_many_arguments) ]
1276
1281
pub fn unwrap < T : HasAfEnum > (
1277
1282
input : & Array < T > ,
1278
1283
wx : i64 ,
@@ -1324,6 +1329,7 @@ pub fn unwrap<T: HasAfEnum>(
1324
1329
/// # Return Values
1325
1330
///
1326
1331
/// Image(Array) created from unwrapped Image(Array)
1332
+ #[ allow( clippy:: too_many_arguments) ]
1327
1333
pub fn wrap < T : HasAfEnum > (
1328
1334
input : & Array < T > ,
1329
1335
ox : i64 ,
0 commit comments