搜索结果
查询Tags标签: cy,共有 21条记录-
商品热销排行
商品热销排行 1 商品-创建数据表 1.使用use命令先选中store数据库。 USE store; 2.在store数据库中创建t_product数据表。 CREATE TABLE t_product (id int(20) NOT NULL COMMENT 商品id,category_id int(20) DEFAULT NULL COMMENT 分类id,item_type varchar(100) DEFAULT…
2022/4/14 23:18:48 人评论 次浏览 -
计蒜客:马踏过河卒 (java)
运用动态规划 A点有一个过河卒,需要走到目标B点。卒行走规则:可以向下、或者向右。同时在棋盘上的任一点有一个对方的马(如上图的C点),该马所在的点和所有跳跃一步可达的点称为对方马的控制点。例如上图C点上的马可以控制9个点(图中的 P1,P2⋯P8和C)。卒不能通过对…
2022/1/15 11:33:40 人评论 次浏览 -
计蒜客:马踏过河卒 (java)
运用动态规划 A点有一个过河卒,需要走到目标B点。卒行走规则:可以向下、或者向右。同时在棋盘上的任一点有一个对方的马(如上图的C点),该马所在的点和所有跳跃一步可达的点称为对方马的控制点。例如上图C点上的马可以控制9个点(图中的 P1,P2⋯P8和C)。卒不能通过对…
2022/1/15 11:33:40 人评论 次浏览 -
2021-11-08
#include<iostream> using namespace std; bool LeapYear(int year) { if((year%4==0 && year%100!=0 )||( year%400==0)){return 1;}else return 0; } int GetDays(int year,int month,int day) {bool LeapYear(int year);int n,m,d;n=year;m=month;d=day;…
2021/11/8 23:17:00 人评论 次浏览 -
2021-11-08
#include<iostream> using namespace std; bool LeapYear(int year) { if((year%4==0 && year%100!=0 )||( year%400==0)){return 1;}else return 0; } int GetDays(int year,int month,int day) {bool LeapYear(int year);int n,m,d;n=year;m=month;d=day;…
2021/11/8 23:17:00 人评论 次浏览 -
毛星云opencv之5.5.8离散傅里叶变换程序
#include <opencv2/opencv.hpp> #include<opencv2/core/core.hpp> #include"opencv2/highgui/highgui.hpp" #include<opencv2/imgproc/imgproc.hpp> #include<iostream> using namespace std; using namespace cv; int main() { Ma…
2021/10/27 14:10:14 人评论 次浏览 -
毛星云opencv之5.5.8离散傅里叶变换程序
#include <opencv2/opencv.hpp> #include<opencv2/core/core.hpp> #include"opencv2/highgui/highgui.hpp" #include<opencv2/imgproc/imgproc.hpp> #include<iostream> using namespace std; using namespace cv; int main() { Ma…
2021/10/27 14:10:14 人评论 次浏览 -
python open cv 图片的旋转(便于人脸识别检测)
输入图片,进行旋转,达到校正人脸的目的,提高识别精准度与识别成功率 def rotate_bound(image, angle):# grab the dimensions of the image and then determine the# center(h, w) = image.shape[:2](cX, cY) = (w // 2, h // 2)# grab the rotation matrix (applying …
2021/10/24 11:40:03 人评论 次浏览 -
python open cv 图片的旋转(便于人脸识别检测)
输入图片,进行旋转,达到校正人脸的目的,提高识别精准度与识别成功率 def rotate_bound(image, angle):# grab the dimensions of the image and then determine the# center(h, w) = image.shape[:2](cX, cY) = (w // 2, h // 2)# grab the rotation matrix (applying …
2021/10/24 11:40:03 人评论 次浏览 -
CY详细可行性研究
MCU可选8位、16位、32位。通常位数越大性能越好,外设越多,价格也越高。 LCD单色液晶屏功耗相关资料https://tieba.baidu.com/p/7135105299 LCD分辨率可选:160x96、160x128、160x160、192x128、192x160、240x160、320x240,分辨率越高,能耗越高,为保障帧率,刷新整个画…
2021/10/23 6:11:24 人评论 次浏览 -
CY详细可行性研究
MCU可选8位、16位、32位。通常位数越大性能越好,外设越多,价格也越高。 LCD单色液晶屏功耗相关资料https://tieba.baidu.com/p/7135105299 LCD分辨率可选:160x96、160x128、160x160、192x128、192x160、240x160、320x240,分辨率越高,能耗越高,为保障帧率,刷新整个画…
2021/10/23 6:11:24 人评论 次浏览 -
CY初步可行性研究
超低功耗游戏机方案暂时有两种:复刻某电子词典、自研。 复刻的优点:复刻成功的话,现在网上有的旧资源可直接使用。 复刻的缺点:侵权问题。需要拆解硬件,找到所有核心元器件型号,可能存在某些元器件已无法购买的情况。需要弄到原系统的ROM和配套软硬件,例如下载软件…
2021/10/22 23:12:33 人评论 次浏览 -
CY初步可行性研究
超低功耗游戏机方案暂时有两种:复刻某电子词典、自研。 复刻的优点:复刻成功的话,现在网上有的旧资源可直接使用。 复刻的缺点:侵权问题。需要拆解硬件,找到所有核心元器件型号,可能存在某些元器件已无法购买的情况。需要弄到原系统的ROM和配套软硬件,例如下载软件…
2021/10/22 23:12:33 人评论 次浏览 -
Java 重写小练习
1 package com.bytezero.inherit3;2 3 public class CylinderTest4 {5 public static void main(String[] args) 6 {7 8 Cylinder cy = new Cylinder();9 cy.setRadius(2.2); 10 cy.setLength(3.3); 11 cy.findVolume();…
2021/9/19 9:04:52 人评论 次浏览 -
Java 重写小练习
1 package com.bytezero.inherit3;2 3 public class CylinderTest4 {5 public static void main(String[] args) 6 {7 8 Cylinder cy = new Cylinder();9 cy.setRadius(2.2); 10 cy.setLength(3.3); 11 cy.findVolume();…
2021/9/19 9:04:52 人评论 次浏览