首页 > 其他分享 >模板匹配——金字塔图像计算gen_gauss_pyramid

模板匹配——金字塔图像计算gen_gauss_pyramid

时间:2024-03-13 18:35:06浏览次数:23  
标签:Index pyramid gauss window WindowID dev 金字塔 gen

 

 

 

 

 

 

 

** 计算高斯金字塔图像
* 
dev_open_window(0, 0, 800, 600, 'black', WindowHandle)
read_image (Image, 'fix.png')
* 
* 初始化显示
dev_close_window ()
get_image_size (Image, Width, Height)
dev_open_window (0, 0, 512, 512, 'black', WindowID)
set_display_font (WindowID, 16, 'mono', 'true', 'false')
* 
* 计算高斯金字塔
gen_gauss_pyramid (Image, ImagePyramid, 'constant', 0.5)
* 
* 显示所有高斯金字塔图像
count_obj (ImagePyramid, Number)
for Index := 1 to Number by 1
    select_obj (ImagePyramid, Level, Index)
    dev_display (Level)
    disp_message (WindowID, 'Pyramid level ' + (Index), 'window', 12, 12, 'white', 'false')
    if (Index < Number)
        disp_continue_message (WindowID, 'black', 'false')
        stop ()
    endif
    
endfor

 

标签:Index,pyramid,gauss,window,WindowID,dev,金字塔,gen
From: https://www.cnblogs.com/echo-efun/p/18071274

相关文章

  • 【Coursera GenAI with LLM】 Week 2 Fine-tuning LLMs with instruction Class Notes
    GenAIProjectLifecycle:Afterpickingpre-trainedmodels,wecanfine-tune!In-contextlearning(ICL):zero/one/fewshotinference.Includingafewmodelsinthepromptformodeltolearnandgenerateabettercomplement(akaoutput).Itsdrawbacks......
  • 基于大模型的 Agent 进行任务规划的10种方式
    本文首发自博客基于大模型的Agent进行任务规划的10种方式基于大模型的Agent基本组成应该包含规划(planning),工具(Tools),执行(Action),和记忆(Memory)四个方面,上一篇中重点讲了进行长记忆管理的8种方案,本节将从Agent的概念、ReAct框架、示例、以及一些论文思路来具体......
  • 13-Generating_ Contacts
    Manycollisiondetectionsystemsperformthischeckforeachpairandreturnasinglepointofmaximuminterpenetrationiftheobjectsareincontact.Thatisnotwhatweneed.Weneedcontactgeneration.Thebulkofthischapterlooksatgeneratingthec......
  • 5-adding_general_force
    D’ALEMBERT’SPRINCIPLEForparticlesD’Alembert’sprincipleimpliesthat,ifwehaveasetofforcesactingonanobject,wecanreplaceallthoseforceswithasingleforce,whichiscalculatedby\[f=\sum\limits_{i}f_{i}\]Inotherwords,wes......
  • 中间代码生成(Intermediate Code Generation)
    目录在编译器设计中,将高级语言代码(如C、C++、Java等)转换为低级语言(如汇编语言或机器语言)是一个复杂的过程,其中包括对不同类型的语句进行翻译。下面我将简要解释你提到的各种语句的翻译过程:声明语句的翻译:声明语句用于定义变量、类型或函数。在翻译时,编译器会为这些实体在符......
  • LangChain的Agent使用介绍
    LangChain介绍随着各种开源大模型的发布,越来越多的人开始尝试接触和使用大模型。在感叹大模型带来的惊人表现的同时,也发现一些问题,比如没法查询到最新的信息,有时候问一些数学问题时候,会出现错误答案,还有一些专业领域类问题甚至编造回答等等。有没有什么办法能解决这些问题呢?答......
  • 实例带你了解GaussDB数据库的LOCK TABLE
    本文分享自华为云社区《GaussDB数据库SQL系列-LOCKTABLE》,作者:酷哥。一、前言GaussDB是一款高性能、高可用的分布式数据库,广泛应用于各类行业和场景。在GaussDB中,锁是实现并发控制的关键机制之一,用于协调多个事务之间的数据访问,确保数据的一致性和完整性。本文将围绕GaussDB数......
  • Libcomm通信库:GaussDB(DWS) 为解决建联过多的小妙招
    本文分享自华为云社区《GaussDB(DWS)集群通信系列三:Libcomm通信库》,作者:半岛里有个小铁盒。1.前言适用版本:【8.1.0(及以上)】在大规模集群、高并发业务下,如果有1000DN集群,每个stream线程需要建立1000个连接。如果1000stream并发,DN总共需要建立100万个连接,会消耗大量的连接、......
  • [论文速览] CalliGAN@ Style and Structure-aware Chinese Calligraphy Character Gen
    Pretitle:CalliGAN:StyleandStructure-awareChineseCalligraphyCharacterGeneratoraccepted:AICCW(theAIforcontentcreationworkshop)atCVPR2020paper:https://arxiv.org/abs/2005.12500code:https://github.com/JeanWU/CalliGANref:https://blog.cs......
  • [论文速览] Separating Style and Content for Generalized Style Transfer
    Pretitle:SeparatingStyleandContentforGeneralizedStyleTransferaccepted:CVPR2018paper:https://arxiv.org/abs/1711.06454code:none关键词:styletransfer,chinesetypefacetransfer,fontgeration阅读理由:回顾经典Idea将图片解耦成内容和风格两种特......