高光谱图像存储

发布于 2025-01-27 17:41:30 字数 99 浏览 4 评论 0原文

我想使用Python保存高光谱图像,但我不知道可以在哪里持续数据。我考虑过HDFS。我需要在我的本地服务器上使用云提供商

可以使其变得轻松,并且您建议任何特定的数据库吗?

I would like to save hyperspectral images using Python, but I don't know where I can persist the data. I have thought about HDFS. I need to do it on my local server without using cloud providers

Is there a way to make it easy, and do you recommend any particular database?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长途伴 2025-02-03 17:41:30

HDF通常要求您构建和管理自己的Hadoop群集。

我会考虑云对象存储,例如 aws s3 Google cloud Storage 出于以下原因:

  1. 相对便宜的
  2. 完全管理的
  3. 文件大小或文件数量
  4. 易于python apis
  5. durable-可以在整个文件上复制数据多个区域(所有区域都为您自动处理),因此,如果服务器死亡,您不必担心失去任何东西。

HDFS generally requires you to build and administer your own Hadoop cluster.

I'd consider cloud object storage such as AWS S3 or Google Cloud Storage for the following reasons:

  1. Relatively cheap
  2. Fully managed
  3. No restriction on file size or number of files
  4. Easy Python APIs
  5. Durable - data can be replicated across multiple regions (all handled automatically for you), so you don't need to worry about losing anything if a server dies.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文