#include "common.h"
#include <stddef.h>
#include "vmath.h"
#include "bu/vls.h"
#include "icv/defines.h"
Go to the source code of this file.
|
| int | icv_sanitize (icv_image_t *img) |
| |
| int | icv_add_val (icv_image_t *img, double val) |
| |
| int | icv_multiply_val (icv_image_t *img, double val) |
| |
| int | icv_divide_val (icv_image_t *img, double val) |
| |
| int | icv_pow_val (icv_image_t *img, double val) |
| |
| icv_image_t * | icv_add (icv_image_t *img1, icv_image_t *img2) |
| |
| icv_image_t * | icv_sub (icv_image_t *img1, icv_image_t *img2) |
| |
| icv_image_t * | icv_multiply (icv_image_t *img1, icv_image_t *img2) |
| |
| icv_image_t * | icv_divide (icv_image_t *img1, icv_image_t *img2) |
| |
| int | icv_saturate (icv_image_t *img, double sat) |
| |
| int | icv_resize (icv_image_t *bif, ICV_RESIZE_METHOD method, size_t out_width, size_t out_height, size_t factor) |
| |
| int | icv_rot (size_t argc, const char *argv[]) |
| |
| int | icv_diff (int *matching, int *off_by_1, int *off_by_many, icv_image_t *img1, icv_image_t *img2) |
| |
| icv_image_t * | icv_diffimg (icv_image_t *img1, icv_image_t *img2) |
| |
| DEPRECATED uint32_t | icv_pdiff (icv_image_t *img1, icv_image_t *img2) |
| |
| fastf_t | icv_adiff (icv_image_t *img1, icv_image_t *img2, int m) |
| |
| int | icv_diff_render_info (const icv_image_t *img1, const icv_image_t *img2, struct bu_vls *out_msgs) |
| |
| int | icv_diff_nirt_shots (const icv_image_t *img1, const icv_image_t *img2, FILE *nirt_out1, FILE *nirt_out2) |
| |
| int | icv_fit (icv_image_t *img, struct bu_vls *msg, size_t o_width_req, size_t o_height_req, fastf_t sf) |
| |