博客
关于我
【数字图像处理】三.MFC实现图像灰度、采样和量化功能详解
阅读量:80 次
发布时间:2019-02-25

本文共 1606 字,大约阅读时间需要 5 分钟。

??VC++6.0 MFC??????

???????BMP??

?VC++6.0 MFC?????????????MFC???????BMP?????????????

  • ???????AppWizard?????????MFC??????????ImageProcessing?

  • ????????????File????Open??????BMP???

  • ????????ImageProcessingView.cpp???ShowBitmap?????LoadImage??????????StretchBlt???????????

  • ??????????OnFileOpen??????FileDialog?????????????ShowBitmap???????

  • ??????OnDraw??????????????.bmp??????ShowBitmap???????


  • ????BMP???????

    ?????BMP?????????????????????????????????????????

  • ???????????ImageProcessingView.h?????????????????????????????????????ReadBmp?SaveBmp???

  • ????????ReadBmp??????fread????BMP?????????????????????????????????????

  • ????????SaveBmp??????fwrite?????????????????????????????

  • ????????OnDraw??????ReadBmp????????????ShowBitmap???????


  • ????????

    ????????????????????????????????????????????????

  • ??????????ImageProcessingView.h?????????ConvertGray???OnDraw?????????

  • ????????ConvertGray???????????????????????????????

    • ????????Gray = 0.299 * R + 0.587 * G + 0.144 * B
    • ????????Gray = (R + G + B) / 3
    • ?????Gray = (R * 28 + G * 151 + B * 77) >> 8
  • ????????OnDraw????????????????????????????????


  • ????????

    ????????????????????????????????????

  • ??????????????????????Level 2?Level 4?Level 8????????????????

  • ??????????OnLh2?OnLh4?????????????????????????Level 2????????????Level 4???????

  • ????????OnDraw???????????????????????????????????


  • ????????

    ????????????????????????????????????

  • ?????????????????????????????????

  • ????????OnCy????????????????????????????????

    • ????????????
    • ??????????
  • ????????OnDraw???????????????????????????????????


  • ??

    ????????????VC++6.0 MFC?????BMP??????????????????????????????????????????????????????????

    转载地址:http://ors.baihongyu.com/

    你可能感兴趣的文章
    prometheus安装
    查看>>
    Prometheus实战教程:监控Kafka消息
    查看>>
    Prometheus实战教程:监控mysql数据库
    查看>>
    Prometheus实战教程:监控Nginx状态
    查看>>
    prometheus常用exporter下载地址大全
    查看>>
    Prometheus快速搭建与监控Linux系统实战
    查看>>
    prometheus报警与恢复告警的格式
    查看>>
    Pytorch中安装 torch_geometric 详细图文操作(全)
    查看>>
    prometheus监控docker容器实战
    查看>>
    Prometheus监控k8s集群使用邮箱和微信告警!
    查看>>
    Prometheus监控mysq数据库实战
    查看>>
    prometheus监控nginx实战
    查看>>
    Prometheus监控redis数据库实战
    查看>>
    Prometheus监控教程:使用Grafana展示主机基本信息
    查看>>
    pytorch中如何使用预训练词向量
    查看>>
    Prometheus监控教程:使用PromQL查询监控数据(上篇)
    查看>>
    Prometheus监控教程:使用PromQL查询监控数据(下篇)
    查看>>
    Pytorch中关于forward函数的理解与用法
    查看>>
    Prometheus监控教程:安装部署
    查看>>
    Prometheus监控教程:配置介绍
    查看>>