ICode9

精准搜索请尝试: 精确搜索
  • pygame学习笔记03: 图片旋转, 图片大小2022-05-24 16:34:44

    代码 import sys import pygame pygame.init() screen = pygame.display.set_mode((600, 480), 0, 32) pygame.display.set_caption('my game') screen.fill('white') #根据名字获取颜色 # 创建image surface. img0 = pygame.image.load('star.png')

  • 读取 rgb planner 二进制数据 resize 重采样2022-04-23 00:04:00

    #include <fstream> #include <iostream> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main(int argc, char **argv) {     const uint32_t cols = 640;     const uint32_t rows = 426;     ifstream fin0("0000

  • opencv rgb plannar 读取 转 rgb888保存2022-04-22 23:34:27

    #include <fstream> #include <iostream> #include <opencv2/imgcodecs.hpp> #include <opencv2/opencv.hpp> using namespace cv; using namespace std; int main(int argc, char **argv) {     const uint32_t cols = 24;     const uint32_t row

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有