首页 \ 问答 \ PCL上的点云开发(point cloud development on PCL)

PCL上的点云开发(point cloud development on PCL)

很长一段时间, opencv一直是(现在仍然是)2d开发的主要基础设施。

进行3D时, PCL是自然选择:它具有广泛的算法实现,在线API文档以及行业领先公司的骨干。

也就是说,5年前的最后一个二进制文件怎么会是IDE?(!!!)最后一次更新是在2013年(可能是由于OPENNI死亡 ,谢谢Apple),实现已经过时了,而且我甚至没有谈论C ++ 1x,但是未来的计算能力5.x。

PCL是一个死去的项目吗? 有没有前辈?


For a long time opencv has been (and still is,) the main infrastructure for 2d development.

When going 3d, PCL is the natural choise: it has vast range of algorithms implemented, online API documentation, and the backbone of the industry's leading companies.

That said, How can it be that the last binary is for IDE 5 years ago?(!!!) last update was in 2013 (probably due to the death of OPENNI, thank you Apple), the implementation is obsolete , and I am not even talking about c++1x, nevertheless the futuristic compute capability 5.x.

Is PCL a dead project? are there's any predecessors?


原文:https://stackoverflow.com/questions/32164572
更新时间:2021-06-09 17:06

最满意答案

谢谢大家的回复。

我意识到这个问题对这个论坛来说有点不合适。 但我希望这里的人可能有使用atmel ARM系列微控制器的经验。

我确实联系了Atmel的支持,并且最终得到了帮助。

问题在于JTAG线的硬件设计。 我没有意识到所有JTAG线路(TMS,TDI,TDO,NRST和TCK)都需要上拉电阻。

在我们应用电阻器编程后工作正常。

问候,

Maarten Roozendaal


Thank you all for your responses.

I was aware of the fact that this question was a little unfit for this forum. But I hoped there might be people here who had experience with the atmel ARM series microcontrollers.

I did contact Atmel support and aventually that helped out.

The problem was in de hardware design of the JTAG lines. I was unaware of the need for pull-up resistors on all JTAG lines (TMS, TDI, TDO, NRST and TCK).

after we applied the resistors programming worked fine.

greetings,

Maarten Roozendaal

相关问答

更多
  • 功能语言的一个关键特征是一流功能的概念。 想法是您可以将函数作为参数传递给其他函数,并将其作为值返回。 功能编程涉及编写不改变状态的代码。 这样做的主要原因是对函数的连续调用将产生相同的结果。 您可以使用支持一级函数的任何语言编写功能代码,但还有一些语言,如Haskell,不允许您更改状态。 事实上,你不应该有任何副作用(如打印文本),这听起来像是完全无用的。 Haskell采用了不同的IO:monads方法。 这些对象包含要由您的解释器的顶层执行的所需的IO操作。 在任何其他级别,它们只是系统中的对象。 ...
  • 当你调用ceil(36/32)你要划分两个整数,所以你得到一个整数(在这种情况下是1)。 尝试分开双打: ceil(36.0/32.0) 。 When you call ceil(36/32) you're dividing two integers, so you get an integer as a result (1 in this case). Try dividing doubles: ceil(36.0/32.0).
  • 您可能应该将其打印为指针或十六进制值: printf ("address = %p\n", &variable); printf ("address = %x\n", &variable); 这将为您提供最多8位的十六进制数(对于您的32位地址空间)。 32位数字的范围从00000000 16到FFFFFFFF 16 (十进制的0到4,294,967,295 ),因此它最多可以是10个十进制数字。 你只获得一个7位数的基数为10的原因是因为你的变量远不是地址空间的顶部。 You should probab ...
  • 谢谢大家的回复。 我意识到这个问题对这个论坛来说有点不合适。 但我希望这里的人可能有使用atmel ARM系列微控制器的经验。 我确实联系了Atmel的支持,并且最终得到了帮助。 问题在于JTAG线的硬件设计。 我没有意识到所有JTAG线路(TMS,TDI,TDO,NRST和TCK)都需要上拉电阻。 在我们应用电阻器编程后工作正常。 问候, Maarten Roozendaal Thank you all for your responses. I was aware of the fact that th ...
  • 如果使用CubeMx并配置SPI访问SD卡,则会在代码中自动配置引脚。 查看生成的main.c中前几个函数的定义/实现。 如果您对STM32及其HAL驱动程序没有任何经验,请首先尝试了解这些内容是如何叠加的。 最快的方法是尝试一个例子。 您的所有CubeMx固件库都位于 C:/用户/用户名/ STM32Cube /存储库/ STM32Cube_FW_XX 转到项目>示例文件夹(可能不完全 - 但路径类似),您将找到示例。 If you use CubeMx and configure SPI to acce ...
  • 如果您在Windows下编程,则可以同时使用两者。 如果您希望您的程序可以在其他平台上移植,那么您最好坚持使用c ++ 11。 作为一般规则,如果你正在学习,我建议你去c ++ 11,因为它是一个与c ++语言更加一致的集合。 Win32线程API是一组C风格的函数,而不是C ++库。 另一方面,使用win32编程可能有正当理由,但这可能会隐藏在您可能不需要的平台特定方面(现在)。 If you are programming under windows you can use both. If you w ...
  • 除非你的跳跃真的是随机的,否则分支预测应该消除大部分涉及的开销。 我将花更多的精力来优化内存访问模式,以改善局部性并减少缓存遗漏。 目前,内存延迟是性能的主要瓶颈。 另一个好的方向是提高并行性(使用向量化的SIMD指令,如果可能的话,使用多个内核)。 Unless your jumps are really random, branch prediction should eliminate most of overhead involved. I would dedicate more effort to ...
  • 将传入的请求放入队列中 使用一个线程来调度队列 从队列中获取的请求在它们自己的线程中执行; 队列可以限制活动线程(线程池)的数量,以防止服务器过载。 请求不会丢失,但是他们可能会等待一段时间等待处理。 如果你愿意,队列管理器也可以杀死花费太长时间的线程 祝你好运! put the incoming requests into a queue use one thread to dispatch the queue requests taken from the queue are executed in t ...
  • GCC使用libgcc.a包含的一些内部子程序,这些子程序不能被排除。 请参阅https://gcc.gnu.org/onlinedocs/gcc-5.3.0/gcc/Link-Options.html#Link-Options : 被-nostdlib和-nodefaultlibs绕过的标准库之一是libgcc.a,它是一个内部子程序库,GCC用它来克服特定机器的缺点,或某些语言的特殊需求。 (有关libgcc.a的更多讨论,请参阅与GCC输出的接口。)在大多数情况下,即使您想要避免使用其他标准库,也需要 ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)