我想展示一个示例图像,该图像如何为MTurk worker注释图像中的关键点。最好在短指令和完整指令部分中都显示示例图像。
当前在线
我尝试通过插入HTML指令将HTML代码简单地放入MTurk模板中,以用作人群关键点API。上面说要插入任何HTML代码。
这是当前代码:
<script src="https://assets.crowd.aws/crowd-html-elements.js"
</script>
<crowd-form answer-format="flatten-objects">
<crowd-keypoint
src= ${image_url}
labels="['Keypoint 1',
'Keypoint 2']"
header="Place points on the requested item(s)"
name="annotatedResult">
<short-instructions>
<p><img src=”https://images.pexels.com/photos/248797/pexels-photo-248797.jpeg”></p>
<p>Place points on the requested items.</p>
</short-instructions>
</crowd-keypoint>
</crowd-form>
我只是得到了一个损坏的图像链接,我希望该图像出现在这里。我正在使用自己的s3存储桶中的图像-但在上面的代码中,我只是提供了指向某些图片的链接。但这也不起作用。
答案 0 :(得分:0)
我认为您只有两个小问题: 1.您在第一行缺少结尾的“>” 2.在图像标签中,您似乎在图像的URL周围使用了智能(或卷曲)引号。那些通常会被Microsoft Word放置在那里,但不能与HTML代码很好地配合使用。如果将“”替换为“,就可以了。