Local Intensity Order Pattern (LIOP) descriptor (Local Intensity Order Pattern (LIOP) descriptor)
More...
Go to the source code of this file.
Detailed Description
Local Intensity Order Pattern (LIOP) descriptor (Local Intensity Order Pattern (LIOP) descriptor)
- Author:
- Hana Sarbortova
-
Andrea Vedaldi
- See also:
- Local Intensity Order Pattern (LIOP) descriptor
Definition in file liop.h.
Typedef Documentation
LIOP descriptor extractor object.
Function Documentation
Delete object instance.
- Parameters:
-
Definition at line 417 of file liop.c.
Get the dimension of a LIOP descriptor.
- Parameters:
-
- Returns:
- dimension.
Definition at line 569 of file liop.c.
Get the intensity threshold.
- Parameters:
-
- Returns:
- intensity threshold.
- See also:
- liop-weighing
Definition at line 594 of file liop.c.
Get the neighbourhood radius.
- Parameters:
-
- Returns:
- neighbourhood radius.
Definition at line 625 of file liop.c.
Get the number of neighbours.
- Parameters:
-
- Returns:
- number of neighbours.
Definition at line 581 of file liop.c.
Get the number of spatial bins.
- Parameters:
-
- Returns:
- number of spatial bins.
Definition at line 637 of file liop.c.
Create a new LIOP object instance.
- Parameters:
-
numNeighbours | number of neighbours. |
numSpatialBins | number of bins. |
radius | radius of the cirucal sample neighbourhoods. |
sideLength | width of the input image patch (the patch is square). |
- Returns:
- new object instance.
The value of radius should be at least less than half the sideLength of the patch.
Definition at line 321 of file liop.c.
Create a new object with default parameters.
- Parameters:
-
sideLength | size of the patches to be processed. |
- Returns:
- new object.
- See also:
- vl_liopdesc_new.
Definition at line 405 of file liop.c.
Compute liop descriptor for a patch.
- Parameters:
-
self | object instance |
desc | descriptor to be computed (output). |
patch | patch to process |
Use vl_liopdesc_get_dimension to get the size of the descriptor desc.
Definition at line 442 of file liop.c.
Set the intensity threshold.
- Parameters:
-
self | object. |
x | intensity threshold. |
If non-negative, the threshold as is is used when comparing intensities. If negative, the absolute value of the specified number is multipled by the maximum intensity difference inside a patch to obtain the threshold.
- See also:
- liop-weighing
Definition at line 613 of file liop.c.