1 Star 0 Fork 1

marlin/Gaussianfilter

forked from 宋佳蓁/Gaussianfilter 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
common.cpp 388 Bytes
一键复制 编辑 原始数据 按行查看 历史
宋佳蓁 提交于 2022-07-11 01:03 . 1
#include "common.h"
/**
* get mat(one dimension vector) value
* @param mat one dimension vector
* @param rows mat rows
* @param cols mat cols
* @param row row position
* @param col col position
* @return
*/
uchar visitOneDimVectorMat(vector<uchar> &mat, int rows, int cols, int row, int col) {
assert(row < rows);
assert(col < cols);
return mat[row * cols + col];
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/maxf110415/Gaussianfilter.git
git@gitee.com:maxf110415/Gaussianfilter.git
maxf110415
Gaussianfilter
Gaussianfilter
master

搜索帮助