自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(15)
  • 资源 (8)
  • 收藏
  • 关注

原创 yaml-cpp 库 demo

关于eclipse工程配置,见下文链接。https://blog.csdn.net/CAIYUNFREEDOM/article/details/89680681代码托管https://github.com/sofiathefirst/imagesCpp/blob/master/04yamlLearn/yamldemo.cppyaml文件内容username: zympassw...

2019-04-29 19:09:54 769

原创 ubuntu在eclipse 中 用yaml-cpp 库 让eclipse支持C++11特性

https://github.com/jbeder/yaml-cpp今天想使用yaml-cpp库。下载安装后,ubuntu在eclipse下配好工程后,各种错误。想到是c++11特性的问题。错误信息太多了,截取一部分如下:/usr/local/include/yaml-cpp/node/detail/impl.h: At global scope:/usr/local/includ...

2019-04-29 18:35:43 1244

原创 opencv findChessboardCorners findCirclesGrid 代码实例和运行结果

代码托管:https://github.com/sofiathefirst/imagesCpp/blob/master/01showImg/cali_api.cpp#include <iostream>#include <sstream>#include <string>#include <ctime>#include <cs...

2019-04-29 17:16:29 4836

原创 opencv获得相机的最大分辨率

代码托管:https://github.com/sofiathefirst/imagesCpp/blob/master/01showImg/cali_api.cpp#include<opencv2/highgui/highgui.hpp>#include<opencv2/imgproc/imgproc.hpp>using namespace cv;i...

2019-04-29 12:05:27 2441

原创 ubuntu 下eclipse opencv工程配置

1.new->other源文件:#include<opencv2/highgui/highgui.hpp>#include<opencv2/imgproc/imgproc.hpp>#include<cstdio>#include<iostream>#include <cstdlib>using na...

2019-04-28 14:32:23 457

原创 ubuntu下的错误解决 eclipse cmake 错误

​CMake Error: The detected version of Ninja () is less than the version of Ninja required by CMake (1.3).​CMake Error: CMAKE_C_COMPILER not set, after EnableLanguageCMake Error: CMAKE_CXX_COMP...

2019-04-28 10:59:59 2414

原创 cv::aruco::drawMarker

API文档https://docs.opencv.org/3.2.0/d9/d6a/group__aruco.html代码托管https://github.com/sofiathefirst/imagesCpp/tree/master/03arucoLearn#include <iostream>#include<opencv2/opencv.hpp&g...

2019-04-26 17:21:41 1319

原创 ArUco Library 增强现实库-相机校准

https://docs.google.com/document/d/1QU9KoBtjSM2kF6ITOjQ76xqL7H0TEtXriJX5kwi9Kgc/editq@z-OptiPlex-9020:~/Desktop/aruco-3.1.0/build/utils_calibration$ ./aruco_calibration_fromimages mycalibrationfi...

2019-04-26 09:53:33 923

原创 3d 可视化百度Apollo的数据开放平台中的激光点云障碍物检测分类数据

百度数据介绍页面:http://data.apollo.auto/help?name=data_intro_3d&data_key=lidar_obstacle_label&data_type=0&locale=zh-cn&lang=zh代码:https://github.com/sofiathefirst/imagesCpp/tree/master/0...

2019-04-24 18:28:46 1797

原创 tensorflow python3 minist keras简单卷积网络实现

https://github.com/sofiathefirst/AIcode/tree/master/03minstDemofrom __future__ import print_functionimport numpy as npfrom keras.datasets import mnistfrom keras.models import Sequentialfr...

2019-04-17 12:05:12 303

原创 利用pandas做数据分析统计应用---统计二胎年龄差距

https://github.com/sofiathefirst/AIcode/tree/master/06pandasAPI源码和数据文件见上述链接。本文数据提取自深圳市2019年某次公租房申请公示名单,移除了非身份证的数据。import pandas as pdimport matplotlib.pyplot as plt '''粗略统计二胎年龄差距se 为1 主申请人,...

2019-04-12 16:48:29 632

原创 pandas 操作 加减行 对列数据进行修改 行遍历 从身份号码列提取出年月日

代码托管在githubhttps://github.com/sofiathefirst/AIcode/tree/master/06pandasAPIcsv 文件内容name,se,id李铭,1,44030119610508林路陶,2,44020319620319李琳,2,44030119880703刘国平,1,44030119690319import pandas as ...

2019-04-12 15:25:01 3382

原创 matlab统计直方图 统计各年份的人数直方图

https://github.com/sofiathefirst/matlabdemo源码和数据文件见上述链接。本文数据提取自深圳市2019年某次公租房申请公示名单,移除了非身份证的数据。data = load('D:/year.txt');year= data(:,2);sum(year==2012)%2012年初生人数cnt = unique(year)%统计集合,...

2019-04-12 11:54:48 2868

转载 q-learn

import numpy as npa = np.zeros(16)a[6]=-1a[9]=-1a[10]=1a = np.reshape (a,(4,4))print(a)mapp = aqtable = np.zeros((16,4))# up ,down, left ,right scorerate = 0.4#learning ratey = 0.4row ...

2019-04-11 16:22:45 259

原创 keras 线性回归 预测

#!/usr/bin/env python# -*- coding:UTF-8 -*-import numpy as npnp.random.seed(1337) # for reproducibilityfrom keras.models import Sequentialfrom keras.layers import Denseimport matplotlib.pyplot...

2019-04-03 19:01:33 825

STM32Cube_FW_F4_V1.18.0

https://pan.baidu.com/s/1tg8a2h3RoE0z8EhNwhPSbQ 414.8M 百度网盘 STM32Cube_FW_F4_V1.18.0

2018-05-31

航空航天器运动的建模-飞行动力学的理论基础

航空航天器运动的建模-飞行动力学的理论基础 扫描版 大学教材

2018-05-31

微分器设计与应用——信号滤波与求导

微分器设计与应用,信号滤波与求导,matlba,书的源码

2017-04-06

先进PID控制Matlab仿真第4版-仿真程序-上交

先进PID控制Matlab仿真第4版-仿真程序-上交

2017-03-01

Csharp发送电子邮件

Csharp发送电子邮件 MailMessage SmtpClient

2010-12-04

DHTML/HTML/CSS网页制作完全手册

手册目录: DHTML参考 HTML参考 CSS属性参考 VML网页矢量图 …………

2010-08-12

数据结构严魏敏习题答案

数据结构 严魏敏习题答案 word 欢迎大家下载。 只有程序设计部分的答案。

2009-12-16

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除