diff options
author | Stefan Klug <stefan.klug@ideasonboard.com> | 2025-02-06 15:10:10 +0100 |
---|---|---|
committer | Stefan Klug <stefan.klug@ideasonboard.com> | 2025-02-12 14:26:27 +0100 |
commit | 82cf918b5bd70cf6cf60c2ba7a08353c993a8d82 (patch) | |
tree | 33520c109d2b9845857425d563e19b7fb997b54f /src/ipa/rkisp1/algorithms | |
parent | cfd94e5f854431a1575f52cee779eb8299267485 (diff) |
ipa: Use Vector class from libcamera
Now that there is a Vector class in libcamera, use that one.
Signed-off-by: Stefan Klug <stefan.klug@ideasonboard.com>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Reviewed-by: Naushir Patuck <naush@raspberrypi.com>
Diffstat (limited to 'src/ipa/rkisp1/algorithms')
-rw-r--r-- | src/ipa/rkisp1/algorithms/awb.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ipa/rkisp1/algorithms/awb.h b/src/ipa/rkisp1/algorithms/awb.h index e4248048..34ec42cb 100644 --- a/src/ipa/rkisp1/algorithms/awb.h +++ b/src/ipa/rkisp1/algorithms/awb.h @@ -9,8 +9,9 @@ #include <optional> +#include "libcamera/internal/vector.h" + #include "libipa/interpolator.h" -#include "libipa/vector.h" #include "algorithm.h" |