6

我正在评估 python plotly 和/或 dash 作为更新图像的链接图的散景/全息视图的替代方案。

要求:将数据点链接到图像:我有散点图和热图,其中各个数据点表示从图像派生的值。我想从散点图中的数据点链接回该数据点的数值所来自的图像。图像数据位于 numpy 数组中,也可以由回调函数提供。我想避免将 .png 文件写入磁盘并将 png 文件嵌入到 html 元素中。

将图像选择链接到数据点:例如显示图像。根据图像中的选择更新绘图(例如简单的直方图)。

但是,我似乎无法在 plotly/dash 中找到任何用于图像显示的小部件。我错过了什么还是真的没有这样的东西?

4

2 回答 2

2

我想从散点图中的数据点链接回该数据点的数值所来自的图像。

请参阅https://plot.ly/dash/interactive-graphing。您可以将 分配callbackselectedDatahoverDataclickData的属性dash_core_components.Graph

将图像选择链接到数据点:例如显示图像。根据图像中的选择更新绘图(例如简单的直方图)。

您可以在绘图图上显示背景图像,然后使用相同的selectedData工具根据所选区域更新回调。这是一个简单的例子:

import dash
from dash.dependencies import Input, Output
import dash_core_components as dcc
import dash_html_components as html
import base64
import json

app = dash.Dash()
app.css.append_css({'external_url': 'https://codepen.io/chriddyp/pen/dZVMbK.css'})

RANGE = [0, 1]

def InteractiveImage(id, image_path):
    encoded_image = base64.b64encode(open(image_path, 'rb').read())
    return dcc.Graph(
        id=id,
        figure={
            'data': [],
            'layout': {
                'xaxis': {
                    'range': RANGE
                },
                'yaxis': {
                    'range': RANGE,
                    'scaleanchor': 'x',
                    'scaleratio': 1
                },
                'height': 600,
                'images': [{
                    'xref': 'x',
                    'yref': 'y',
                    'x': RANGE[0],
                    'y': RANGE[1],
                    'sizex': RANGE[1] - RANGE[0],
                    'sizey': RANGE[1] - RANGE[0],
                    'sizing': 'stretch',
                    'layer': 'below',
                    'source': 'data:image/png;base64,{}'.format(encoded_image)
                }],
                'dragmode': 'select'  # or 'lasso'
            }
        }
    )


app.layout = html.Div([
    html.Div(className='row', children=[
        html.Div(InteractiveImage('image', 'dash_app.png'), className='six columns'),
        html.Div(dcc.Graph(id='graph'), className='six columns')
    ]),
    html.Pre(id='console')
])


# display the event data for debugging
@app.callback(Output('console', 'children'), [Input('image', 'selectedData')])
def display_selected_data(selectedData):
    return json.dumps(selectedData, indent=2)


@app.callback(Output('graph', 'figure'), [Input('image', 'selectedData')])
def update_histogram(selectedData):
    x_range = selectedData['range']['x']
    x_range = selectedData['range']['y']
    # filter data based off of selection in here

    # for simple example purposes, we'll just display the selected RANGE
    return {
        'data': [{
            'x': x_range,
            'y': x_range,
            'mode': 'markers',
            'marker': {
                'size': 20
            }
        }],
        'layout': {
            'xaxis': {'range': RANGE},
            'yaxis': {'range': RANGE, 'scaleanchor': 'x', 'scaleratio': 1},
            'height': 600
        }
    }


if __name__ == '__main__':
    app.run_server(debug=True)

在此处输入图像描述

于 2018-02-02T16:55:01.993 回答
0

如果您仍然对答案感兴趣:https ://plotly.com/python/imshow/ ,如果您滚动到底部,您将看到如何将其应用于 Dash

于 2020-04-22T16:48:44.850 回答