cococoninini的博客

私信 关注
cococoninini
码龄6年
  • 1,676
    被访问量
  • 7
    原创文章
  • 607,718
    作者排名
  • 3
    粉丝数量
  • 于 2014-09-10 加入CSDN
获得成就
  • 获得3次点赞
  • 内容获得1次评论
  • 获得31次收藏
荣誉勋章
兴趣领域
  • #人工智能
    #视觉/OpenCV#神经网络#图像处理#Python#算法
TA的专栏
  • python
    1篇
  • git
    1篇
  • java
    2篇
  • 最近
  • 文章
  • 资源
  • 问答
  • 课程
  • 帖子
  • 收藏
  • 关注/订阅

what is __init__.py for?

Python defines two types of packages. regular packages and namespace packages. Regular packages are traditional packages as they existed in python3.2 and earlier. A regular package is typically implem...
原创
571阅读
0评论
0点赞
发布博客于 1 年前

Merging an upstream repository into your fork

If you don't have push (write) access to an upstream repository, then you can pull commits form that repository into your own fork1. open a terminal2. change the current working directory to your ...
原创
64阅读
0评论
0点赞
发布博客于 1 年前

数字图像处理和opencv

数字图像处理,opencv3机器视觉Python语言实现_刘波和OpenCV3编程入门_毛星云编著_电子工业出版三本书。 链接是网盘链接,失效可以私信联系我
txt
发布资源于 2 年前

Python基础教程第3版

Python基础教程第3版,某盘链接,失效请私信我
txt
发布资源于 3 年前

实战Java高并发程序设计

实战Java高并发程序设计 链接失效请联系我
txt
发布资源于 3 年前

计算机系统基础袁春风

计算机系统基础袁春风 某盘链接,失效请联系我
txt
发布资源于 3 年前

堆排序的java实现

/*最大堆*/public class HeapSort { int heapsize; int[] heap; /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub HeapSort hp = new HeapSort()...
原创
69阅读
0评论
1点赞
发布博客于 3 年前

opencv核心操作笔记--图像的基础操作

图像的基础操作目标:1. 获取图像的像素值并修改2. 获取图像的属性信息3. 图像通道的拆分以及合并1. 获取图像的像素值并修改import cv2import numpy as npimg = cv2.imread('./xxx.png')px = img[100,100]print(px)#BGR图像blue = img[100,100,0]prin...
原创
106阅读
1评论
1点赞
发布博客于 3 年前

OpenCV中的GUI特性--如何读入、显示以及保存图像

1. 如何读入图像import cv2path = './xxx.jpg'img = cv2.imread(path, 0)其中cv2.imread()的第二个参数告诉函数如何读取这个图像,默认参数为cv2.IMREAD_COLOWR: 读入一幅彩色图像。图像的透明度会被忽略,这是默认参数。2. 如何显示图像2.1 使用cv2.imgshow()cv2.imgshow(...
原创
289阅读
0评论
1点赞
发布博客于 3 年前

Git教程廖雪峰带目录

Git教程廖雪峰带目录和书签,高清版本有书签和目录。
pdf
发布资源于 3 年前

java核心技术第10版

java经典书籍,不用多介绍。java核心技术卷一第十版中文版(网盘链接),真实有效,如果链接失效请私信我。
pdf
发布资源于 4 年前

NumPy Cookbook 第二版英文版

作者:Ivan Idris 出版时间:2015 页数:258 语言:English 格式:PDF
pdf
发布资源于 4 年前

The Little Schemer pdf 英文高清文字版

This delightful book leads you through the basic elements of programming in Scheme (a Lisp dialect) via a series of dialogues with well-chosen questions and exercises. Besides teaching Scheme, The Little Schemer teaches the reader how to think about computation. The authors focus on ten essential concepts of thinking about how to compute and demonstrate how to apply these concepts in inventive ways. The Little Schemer is an excellent book both for the beginner and for the seasoned programmer.
pdf
发布资源于 4 年前

java核心技术卷一第十版中文版

java经典书籍,不用多介绍。java核心技术卷一第十版中文版(网盘链接),真实有效,如果链接失效请私信我。
txt
发布资源于 4 年前

Python基础教程第三版(英文版)

Python基础教程第三版(英文版)Magnus Lie Hetland 经典Python书籍 英文版beginning from novice to professional third edition
pdf
发布资源于 4 年前

java中的栈内存和堆内存(笔记)

当一个方法执行时,每个方法都会建立自己的内存栈,在这个方法内定义的变量将会逐个放入这块栈内存里,随着方法的执行结束,这个方法的内存栈也将自然销毁.因此所有在方法中定义的局部变量都是放在栈内存的;在程序中创建一个对象时,这个对象将被保存到运行时数据区中,以便反复利用(因为对象的创建成本通常较大),这个运行时数据区就是堆内存.堆内存中的对象不会因为方法的结束而销毁,即使方法结束后,这个对象还可能被另一
原创
124阅读
0评论
0点赞
发布博客于 4 年前

锋利的jQuery(第2版)

锋利的jQuery(第2版) 人民邮电出版社 本书循序渐进地对jQuery的各种函数和方法进行了介绍,读者可以系统地掌握jQuery的选择器,DOM操作等。
pdf
发布资源于 4 年前

机器学习 清华大学出版社

机器学习 zhouzhihua
pdf
发布资源于 4 年前

JavaScript语言精粹

JavaScript语言精粹
pdf
发布资源于 4 年前

JavaScript设计模式

JavaScript设计模式
pdf
发布资源于 4 年前

用EXCEL学数据挖掘

[用EXCEL学数据挖掘].(上田和明).孙英英.扫描版
pdf
发布资源于 4 年前

Java程序员面试宝典

Java程序员面试宝典.
pdf
发布资源于 4 年前

计算机操作系统汤子瀛

汤子瀛 课本
pdf
发布资源于 4 年前

算法导论课后答案

算法导论答案
pdf
发布资源于 4 年前

Algorithm Design

Algorithm Design jon kleiberg
pdf
发布资源于 4 年前

离散数学及其应用

离散数学及其应用
pdf
发布资源于 4 年前

大话数据结构

大话数据结构
pdf
发布资源于 4 年前

TensorFlow For Machine Intelligence

TensorFlow For Machine Intelligence
pdf
发布资源于 4 年前

TensorFlow Machine Learning Cookbook

TensorFlow Machine Learning Cookbook.pdf
pdf
发布资源于 4 年前

计算机网络释疑与习题解答

计算机网络释疑与习题解答 配套谢希仁教材 第5版
pdf
发布资源于 4 年前

线性代数及其应用

本书主要内容包括线性方程组、矩阵代数、行列式、向量空间、特征值与特征向量、正交性和最小二乘法、对称矩阵和二次型等。此外,本书包含大量的练习题、习题、例题等,便于读者参考。
pdf
发布资源于 4 年前

Python算法教程

Python算法教程
pdf
发布资源于 4 年前

Data Structures and Algorithms with Python

Data Structures and Algorithms with Python
pdf
发布资源于 4 年前

Pro JavaScript Techniques

Pro JavaScript Techniques Apress
pdf
发布资源于 4 年前

Foundations of Python Network Programming 2nd

Foundations of Python Network Programming 第二版
pdf
发布资源于 4 年前

The Essential Guide to HTML5 and CSS3 Web Design

The.Essential.Guide.to.HTML5.and.CSS3.Web.Design,.Grannell,.Sumner,.Synodinos,.Apress
pdf
发布资源于 4 年前

Pro PHP Application Performance

Pro PHP Application Performance
pdf
发布资源于 4 年前

Beginning PHP and MySQL

Beginning PHP and MySQL: From Novice to Professional, Fourth Edition is a major update of W. Jason Gilmore’s authoritative book on PHP and MySQL. The fourth edition includes complete coverage of PHP 5.3 features, including namespacing, an update of AMP stack installation and configuration, updates to Zend Framework, coverage of MySQL Workbench, and much more. You’ll not only receive extensive introductions to the core features of PHP, MySQL, and related tools, but you’ll also learn how to effectively integrate them in order to build robust data-driven applications. Gilmore has seven years of experience working with these technologies, and he has packed this book with practical examples and insight into the real-world challenges faced by developers. Accordingly, you will repeatedly return to this book as both a valuable instructional tool and reference guide. What you’ll learn How to install and configure Apache, PHP 5.3, and MySQL PHP and object-oriented programming basics New PHP 5.3 features and how to use them How to move beyond basic PHP, including using the Zend Framework How to use MySQL to securely store your website's data How to use MySQL Workbench to manage your database Who this book is for Developers who want to harness PHP and MySQL to create powerful web applications Table of Contents Introducing PHP Configuring Your Environment PHP Basics Functions Arrays Object-Oriented PHP Advanced OOP Features Error and Exception Handling Strings and Regular Expressions Working with the File and Operating System PEAR Date and Time Forms Authenticating Your Users Handling File Uploads Networking PHP and LDAP Session Handlers Templating with Smarty Web Services Secure PHP Programming SQLite Building Web Sites for the World MVC and the Zend Framework Introducing MySQL Installing and Configuring MySQL The Many MySQL Clients MySQL Storage Engines and Datatypes Securing MySQL Using PHP with MySQL Introducing PDO Stored Routines MySQL Triggers MySQL Views Practical Database Queries Indexes and Searching Transactions Importing and Exporting Data
pdf
发布资源于 4 年前

Pro PHP and JQuery

This book is for intermediate programmers interested in building AJAX web applications using jQuery and PHP. Along with teaching some advanced PHP techniques, it will teach you how to take your dynamic applications to the next level by adding a JavaScript layer with jQuery., * Learn to utilize built-in PHP functions to build calendar tools., * Learn how jQuery can be used for AJAX, animation, client-side validation, and more., What you’ll learn, * Use PHP to build a calendar application that allows users to post, view, edit, and delete events., * Use jQuery to allow the calendar app to be viewed and edited without requiring page refreshes using built-in AJAX functions., * Learn the power and versatility of PHP's object-oriented programming style., * Learn the various forms of security available and how to best apply them., * Learn jQuery plug-in development patterns and create modular, reusable jQuery plug-ins., * Learn the basics of jQuery effects, including fading elements, generating HTML markup on the fly, and creating modal windows., Who this book is for, This book is intended for programmers who want to bridge the gap between front- and back-end programming. It does not cover HTML or CSS except where absolutely necessary, and it focuses on taking intermediate PHP developers to the next level while getting comfortable with AJAX and the power of jQuery.
pdf
发布资源于 4 年前

数据结构与算法分析

数据结构与算法分析
pdf
发布资源于 4 年前

鸟哥的Linux私房菜基础学习篇

鸟哥的Linux私房菜基础学习篇,经典书籍
pdf
发布资源于 4 年前

java核心技术第一卷第十版英文版

java核心技术第一卷第十版英文版
pdf
发布资源于 4 年前

算法导论(美国)Cormen.扫描版

算法导论
pdf
发布资源于 4 年前

关于Java Collections的几个常见问题

转自http://linbingdong.com/2017/01/07/Stack%20Overflow%E4%B8%8A%E5%85%B3%E4%BA%8EJava%20Collections%E7%9A%84%E5%87%A0%E4%B8%AA%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98/列举几个关于Java Collections的常见问题并给出答案。
转载
155阅读
0评论
0点赞
发布博客于 4 年前

leetcode TwoSum

解法一:双重循环, 复杂度O(n^2)public class Solution { public static void main(String[] args){ int c[] = {3,3,6}; Solution so = new Solution(); int[] result=so.twoSum(c,9); System.out.println(result[0]
原创
142阅读
0评论
0点赞
发布博客于 4 年前