上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 94 下一页
摘要: 1、qobject_impl.h /**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact 阅读全文
posted @ 2021-11-05 08:30 西北逍遥 阅读(434) 评论(0) 推荐(0) 编辑
摘要: Qt源码地址 https://download.qt.io/ https://download.qt.io/archive/qt/ https://code.qt.io/cgit/qt/qt5.git ########################### 阅读全文
posted @ 2021-11-04 08:46 西北逍遥 阅读(196) 评论(0) 推荐(0) 编辑
摘要: java Method /* * Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to lic 阅读全文
posted @ 2021-11-03 09:12 西北逍遥 阅读(34) 评论(0) 推荐(0) 编辑
摘要: matlab polarplot 在极坐标中绘制螺线 theta = linspace(0,1800,500); rho = 0.005*theta/100; theta_radians = deg2rad(theta); polarplot(theta_radians,rho) 参考:https: 阅读全文
posted @ 2021-11-02 08:44 西北逍遥 阅读(346) 评论(0) 推荐(0) 编辑
摘要: matlab polarplot 在极坐标中绘制线条 函数: function h = polarplot(varargin) %POLARPLOT Polar plot. % POLARPLOT(TH,R) plots vector TH vs R. The values in TH % are 阅读全文
posted @ 2021-11-02 08:29 西北逍遥 阅读(884) 评论(0) 推荐(0) 编辑
摘要: 无法解析的外部符号 wWinMain 严重性 代码 说明 项目 文件 行 禁止显示状态 错误 LNK2019 无法解析的外部符号 wWinMain,该符号在函数 "int __cdecl invoke_main(void)" (?invoke_main@@YAHXZ) 中被引用 ConsoleApp 阅读全文
posted @ 2021-11-01 13:08 西北逍遥 阅读(1784) 评论(0) 推荐(0) 编辑
摘要: 笔记本环境 done # # To activate this environment, use # # $ conda activate wind_2021 # # To deactivate an active environment, use # # $ conda deactivate (b 阅读全文
posted @ 2021-11-01 09:14 西北逍遥 阅读(37) 评论(0) 推荐(0) 编辑
摘要: jsoup connect /** * Creates a new {@link Connection} to a URL. Use to fetch and parse a HTML page. * <p> * Use examples: * <ul> * <li><code>Document d 阅读全文
posted @ 2021-11-01 08:53 西北逍遥 阅读(456) 评论(0) 推荐(0) 编辑
摘要: Elements package org.jsoup.select; import org.jsoup.helper.Validate; import org.jsoup.nodes.Element; import org.jsoup.nodes.FormElement; import org.js 阅读全文
posted @ 2021-10-31 19:04 西北逍遥 阅读(853) 评论(0) 推荐(0) 编辑
摘要: Document package org.jsoup.nodes; import org.jsoup.helper.StringUtil; import org.jsoup.helper.Validate; import org.jsoup.parser.ParseSettings; import 阅读全文
posted @ 2021-10-31 13:25 西北逍遥 阅读(627) 评论(0) 推荐(0) 编辑
摘要: QThread Header: #include <QThread> qmake: QT += core Inherits: QObject Public Types enum Priority { IdlePriority, LowestPriority, LowPriority, NormalP 阅读全文
posted @ 2021-10-30 08:01 西北逍遥 阅读(86) 评论(0) 推荐(0) 编辑
摘要: QAbstractState Header: #include <QAbstractState> qmake: QT += core Since: Qt 4.6 Inherits: QObject Inherited By: QFinalState, QHistoryState, and QStat 阅读全文
posted @ 2021-10-29 08:23 西北逍遥 阅读(58) 评论(0) 推荐(0) 编辑
摘要: opencv Mat QImage if (imgParam.channels() == 3) { cv::cvtColor(imgParam, rgb, CV_BGR2RGB); img = QImage((const uchar*)(rgb.data), rgb.cols, rgb.rows, 阅读全文
posted @ 2021-10-28 08:12 西北逍遥 阅读(41) 评论(0) 推荐(0) 编辑
摘要: QVector /**************************************************************************** ** ** Copyright (C) 2016 The Qt Company Ltd. ** Contact: https:/ 阅读全文
posted @ 2021-10-27 08:15 西北逍遥 阅读(138) 评论(0) 推荐(0) 编辑
摘要: QLabel显示opencv Mat图片 void showImgOnLabel(QLabel* labelParam, cv::Mat imgParam, int showType) { cv::Mat rgb; QImage img; if (showType==1) { cv::resize( 阅读全文
posted @ 2021-10-26 08:24 西北逍遥 阅读(377) 评论(0) 推荐(0) 编辑
摘要: opencv RetrievalModes enum RetrievalModes { /** retrieves only the extreme outer contours. It sets `hierarchy[i][2]=hierarchy[i][3]=-1` for all the co 阅读全文
posted @ 2021-10-25 08:13 西北逍遥 阅读(288) 评论(0) 推荐(0) 编辑
摘要: opencv calcHist3D_Invoker template<typename T> class calcHist3D_Invoker { public: calcHist3D_Invoker( const std::vector<uchar*>& _ptrs, const std::vec 阅读全文
posted @ 2021-10-24 06:01 西北逍遥 阅读(34) 评论(0) 推荐(0) 编辑
摘要: opencv calcHist1D_Invoker template<typename T> class calcHist1D_Invoker { public: calcHist1D_Invoker( const std::vector<uchar*>& _ptrs, const std::vec 阅读全文
posted @ 2021-10-23 09:17 西北逍遥 阅读(40) 评论(0) 推荐(0) 编辑
摘要: opencv CalcHist2D_8uInvoker class CalcHist2D_8uInvoker { public: CalcHist2D_8uInvoker( const std::vector<uchar*>& _ptrs, const std::vector<int>& _delt 阅读全文
posted @ 2021-10-23 09:04 西北逍遥 阅读(25) 评论(0) 推荐(0) 编辑
摘要: opencv erode void cv::erode( InputArray src, OutputArray dst, InputArray kernel, Point anchor, int iterations, int borderType, const Scalar& borderVal 阅读全文
posted @ 2021-10-22 09:30 西北逍遥 阅读(224) 评论(0) 推荐(0) 编辑
摘要: opencv histPrepareImages static void histPrepareImages( const Mat* images, int nimages, const int* channels, const Mat& mask, int dims, const int* his 阅读全文
posted @ 2021-10-21 08:23 西北逍遥 阅读(134) 评论(0) 推荐(0) 编辑
摘要: opencv calcHistLookupTables_8u static void calcHistLookupTables_8u( const Mat& hist, const SparseMat& shist, int dims, const float** ranges, const dou 阅读全文
posted @ 2021-10-20 17:19 西北逍遥 阅读(47) 评论(0) 推荐(0) 编辑
摘要: opencv morphologyEx void cv::morphologyEx( InputArray _src, OutputArray _dst, int op, InputArray _kernel, Point anchor, int iterations, int borderType 阅读全文
posted @ 2021-10-20 08:09 西北逍遥 阅读(108) 评论(0) 推荐(0) 编辑
摘要: opencv ocl_morphologyEx static bool ocl_morphologyEx(InputArray _src, OutputArray _dst, int op, InputArray kernel, Point anchor, int iterations, int b 阅读全文
posted @ 2021-10-19 08:35 西北逍遥 阅读(49) 评论(0) 推荐(0) 编辑
摘要: opencv dilate void cv::dilate( InputArray src, OutputArray dst, InputArray kernel, Point anchor, int iterations, int borderType, const Scalar& borderV 阅读全文
posted @ 2021-10-19 08:18 西北逍遥 阅读(117) 评论(0) 推荐(0) 编辑
摘要: opencv erode void cv::erode( InputArray src, OutputArray dst, InputArray kernel, Point anchor, int iterations, int borderType, const Scalar& borderVal 阅读全文
posted @ 2021-10-18 18:49 西北逍遥 阅读(86) 评论(0) 推荐(0) 编辑
摘要: opencv polylines void polylines( InputOutputArray _img, const Point* const* pts, const int* npts, int ncontours, bool isClosed, const Scalar& color, i 阅读全文
posted @ 2021-10-18 08:41 西北逍遥 阅读(502) 评论(0) 推荐(0) 编辑
摘要: opencv fillPoly void fillPoly( InputOutputArray _img, const Point** pts, const int* npts, int ncontours, const Scalar& color, int line_type, int shift 阅读全文
posted @ 2021-10-17 10:38 西北逍遥 阅读(624) 评论(0) 推荐(0) 编辑
摘要: opencv FillEdgeCollection static void FillEdgeCollection( Mat& img, std::vector<PolyEdge>& edges, const void* color ) { PolyEdge tmp; int i, y, total 阅读全文
posted @ 2021-10-17 10:27 西北逍遥 阅读(107) 评论(1) 推荐(0) 编辑
摘要: Opencv fillConvexPoly void fillConvexPoly( InputOutputArray _img, const Point* pts, int npts, const Scalar& color, int line_type, int shift ) { CV_INS 阅读全文
posted @ 2021-10-17 10:21 西北逍遥 阅读(278) 评论(0) 推荐(0) 编辑
上一页 1 ··· 34 35 36 37 38 39 40 41 42 ··· 94 下一页