cva
CVA
¶
Bases: MetaAlgo
Calculate change vectors
Builds a change map by calculating the amplitude map of the change vectors
Source code in changedet/algos/cva.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|
run(im1, im2, **flags)
classmethod
¶
Run Image Differencing algorithm
Parameters:
Name | Type | Description | Default |
---|---|---|---|
im1 |
ndarray
|
Image 1 array |
required |
im2 |
ndarray
|
Image 2 array |
required |
**flags |
dict
|
Flags for the algorithm |
{}
|
Source code in changedet/algos/cva.py
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 |
|