File tree 3 files changed +9
-2
lines changed
3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 427
427
* @throws Exception
428
428
* @method static Image matload(string $filename, array $options = []) Load mat from file.
429
429
* @throws Exception
430
- * @method Image matrixinvert(array $options = []) Invert an matrix.
430
+ * @method Image matrixinvert(array $options = []) Invert a matrix.
431
431
* @throws Exception
432
432
* @method static Image matrixload(string $filename, array $options = []) Load matrix.
433
433
* @throws Exception
434
434
* @method static Image matrixload_source(Source $source, array $options = []) Load matrix.
435
435
* @throws Exception
436
+ * @method Image matrixmultiply(Image $right, array $options = []) Multiply two matrices.
437
+ * @throws Exception
436
438
* @method void matrixprint(array $options = []) Print matrix.
437
439
* @throws Exception
438
440
* @method void matrixsave(string $filename, array $options = []) Save image to matrix.
567
569
* @throws Exception
568
570
* @method Image remainder_const(float[]|float $c, array $options = []) Remainder after integer division of an image and a constant.
569
571
* @throws Exception
572
+ * @method Image remosaic(string $old_str, string $new_str, array $options = []) Rebuild an mosaiced image.
573
+ * @throws Exception
570
574
* @method Image replicate(integer $across, integer $down, array $options = []) Replicate an image.
571
575
* @throws Exception
572
576
* @method Image resize(float $scale, array $options = []) Resize an image.
589
593
* @throws Exception
590
594
* @method Image scRGB2XYZ(array $options = []) Transform scRGB to XYZ.
591
595
* @throws Exception
592
- * @method Image scRGB2sRGB(array $options = []) Convert an scRGB image to sRGB.
596
+ * @method Image scRGB2sRGB(array $options = []) Convert scRGB to sRGB.
593
597
* @throws Exception
594
598
* @method Image scale(array $options = []) Scale an image to uchar.
595
599
* @throws Exception
Original file line number Diff line number Diff line change @@ -53,4 +53,5 @@ abstract class Intent
53
53
const RELATIVE = 'relative ' ;
54
54
const SATURATION = 'saturation ' ;
55
55
const ABSOLUTE = 'absolute ' ;
56
+ const AUTO = 'auto ' ;
56
57
}
Original file line number Diff line number Diff line change @@ -55,4 +55,6 @@ abstract class Kernel
55
55
const MITCHELL = 'mitchell ' ;
56
56
const LANCZOS2 = 'lanczos2 ' ;
57
57
const LANCZOS3 = 'lanczos3 ' ;
58
+ const MKS2013 = 'mks2013 ' ;
59
+ const MKS2021 = 'mks2021 ' ;
58
60
}
You can’t perform that action at this time.
0 commit comments