• Skip to primary navigation
  • Skip to content
  • Skip to footer
Smartadpole Smartadpole DeepLearning Engineering Private Site
  • 软件
  • AI
  • 基础
  • 工具
  • 职业
  • 生活
  • 分类
  • 标签
  • 专栏
  • 年份
  • 关于

    「OpenCV」 矩阵基本操作

    less than 1 minute read

    On this page

    • 1 逻辑运算
    • 附录

    1 逻辑运算

    与:

    bitwise_and(src, dst, res);  // 1    
    Mat res = src_gray & dst;  // 2 只能处理单通道
    Mat res = src_gray.clone();  // 3 只能处理单通道
    res.setTo(Scalar(0), ~dst);      
    

    TOP

    附录

    1. 确定 OpenCV 矩阵元素的数据类型

    Categories: AI, opencv, opencv_core

    Updated: August 28, 2019

    Twitter Facebook LinkedIn
    Previous Next

    Comments

    You May Also Enjoy

    「论文解读」Self-Supervised Person Detection in 2D Range Data using a Calibrated Camera

    2 minute read

    「CV」 深度估计概述

    less than 1 minute read

    相关资源:深度估计资源

    「工具」 Zotero

    1 minute read

    官网: https://www.zotero.org

    「DLFramework」 A311D NPU Demo 使用

    less than 1 minute read

    使用 khadas 官方发布的 A311D NPU demo;

    • Feed
    © 2023 Smartadpole. Powered by Jekyll & Minimal Mistakes.