![]() |
OpenCV 4.13.0
Open Source Computer Vision
|
#include "ximgproc/edge_filter.hpp"#include "ximgproc/disparity_filter.hpp"#include "ximgproc/sparse_match_interpolator.hpp"#include "ximgproc/structured_edge_detection.hpp"#include "ximgproc/edgeboxes.hpp"#include "ximgproc/edge_drawing.hpp"#include "ximgproc/scansegment.hpp"#include "ximgproc/seeds.hpp"#include "ximgproc/segmentation.hpp"#include "ximgproc/fast_hough_transform.hpp"#include "ximgproc/estimated_covariance.hpp"#include "ximgproc/weighted_median_filter.hpp"#include "ximgproc/slic.hpp"#include "ximgproc/lsc.hpp"#include "ximgproc/paillou_filter.hpp"#include "ximgproc/fast_line_detector.hpp"#include "ximgproc/deriche_filter.hpp"#include "ximgproc/peilin.hpp"#include "ximgproc/fourier_descriptors.hpp"#include "ximgproc/ridgefilter.hpp"#include "ximgproc/brightedges.hpp"#include "ximgproc/run_length_morphology.hpp"#include "ximgproc/edgepreserving_filter.hpp"#include "ximgproc/color_match.hpp"#include "ximgproc/radon_transform.hpp"#include "ximgproc/find_ellipses.hpp"名前空間 | |
| namespace | cv |
| namespace | cv::ximgproc |
列挙型 | |
| enum | cv::ximgproc::LocalBinarizationMethods { cv::ximgproc::BINARIZATION_NIBLACK = 0 , cv::ximgproc::BINARIZATION_SAUVOLA = 1 , cv::ximgproc::BINARIZATION_WOLF = 2 , cv::ximgproc::BINARIZATION_NICK = 3 } |
| cv::ximgproc::niBlackThreshold で使用する二値化手法を指定する。 続きを読む... | |
| enum | cv::ximgproc::ThinningTypes { cv::ximgproc::THINNING_ZHANGSUEN = 0 , cv::ximgproc::THINNING_GUOHALL = 1 } |
関数 | |
| void | cv::ximgproc::anisotropicDiffusion (InputArray src, OutputArray dst, float alpha, float K, int niters) |
| 画像に異方性拡散を適用する。 | |
| void | cv::ximgproc::niBlackThreshold (InputArray _src, OutputArray _dst, double maxValue, int type, int blockSize, double k, int binarizationMethod=BINARIZATION_NIBLACK, double r=128) |
| Niblackの手法、またはそれに着想を得た一般的な派生手法のいくつかを用いて、入力画像にしきい値処理を行う。 | |
| void | cv::ximgproc::thinning (InputArray src, OutputArray dst, int thinningType=THINNING_ZHANGSUEN) |
| 入力画像の細線化(スケルトン化)を実現するため、二値ブロブの細線化処理を適用する。 | |