TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Processing the Viking Lander camera data [pdf]

22 点作者 daledavies超过 9 年前

2 条评论

eliteraspberrie超过 9 年前
You can reproduce some of the image processing described here with software today.<p>For example, in Figure 3, the histogram at the top right is a &quot;periodogram&quot; of the original image data. It shows that the original image is skewed towards the high end of the frequency spectrum. They apply a high-pass filter (discard the lowest frequencies) so the processed image shows higher details than the original.<p>If you had the original photograph as an image file, let&#x27;s say an image of the surface of Mars, [0] you could filter out the lowest ten frequency components with a Python script: [1]<p><pre><code> pip install avena avena filter high 10 pia19676-fig1_ml_mcam04403coloradjusted24bwscale.jpg </code></pre> The result: <a href="http:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;ASusx" rel="nofollow">http:&#x2F;&#x2F;imgur.com&#x2F;a&#x2F;ASusx</a><p>Notice the details are more visible.<p>[0] <a href="http:&#x2F;&#x2F;www.nasa.gov&#x2F;jpl&#x2F;msl&#x2F;pia19676&#x2F;geological-contact-zone-near-marias-pass-on-mars" rel="nofollow">http:&#x2F;&#x2F;www.nasa.gov&#x2F;jpl&#x2F;msl&#x2F;pia19676&#x2F;geological-contact-zone...</a><p>[1] (shameless plug) <a href="https:&#x2F;&#x2F;github.com&#x2F;eliteraspberries&#x2F;avena" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;eliteraspberries&#x2F;avena</a>
评论 #10370390 未加载
jakeogh超过 9 年前
About two years ago the Avaneya project released software that can decode the Viking Lander tapes. A few tapes contain images that were (as far as I know) never released.<p>Beautiful results: <a href="https:&#x2F;&#x2F;gist.github.com&#x2F;jakeogh&#x2F;fa995a3277d500ab59b1" rel="nofollow">https:&#x2F;&#x2F;gist.github.com&#x2F;jakeogh&#x2F;fa995a3277d500ab59b1</a><p>There&#x27;s even a very nice DVD which takes the included raw tape data and processes it: <a href="https:&#x2F;&#x2F;directory.fsf.org&#x2F;wiki&#x2F;Avaneya:_Viking_Lander_Remastered_DVD" rel="nofollow">https:&#x2F;&#x2F;directory.fsf.org&#x2F;wiki&#x2F;Avaneya:_Viking_Lander_Remast...</a>