n Name: HQJDW Popular Posts Cache * Description: Caches the Zimeiti popular-posts widget and prevents per-request view-count sorting. */ defined( 'ABSPATH' ) || exit; function hqjdw_popular_posts_cache_key( WP_Query $query ) { $excluded = $query->get( 'post__not_in' ); $excluded = is_array( $excluded ) ? array_map( 'absint', $excluded ) : array(); sort( $excluded, SORT_NUMERIC ); return 'hqjdw_popular_posts_' . md5( implode( ',', $excluded ) ); } add_filter( 'posts_pre_query', static function ( $posts, $query ) { if ( is_admin() || 'post_views_count' !== $query->get( 'meta_key' ) || 'meta_value_num' !== $query->get( 'orderby' ) || 5 !== (int) $query->get( 'posts_per_page' ) ) { return $posts; } $cache_key = hqjdw_popular_posts_cache_key( $query ); $ids = get_transient( $cache_key ); if ( false === $ids ) { $query->set( '_hqjdw_popular_cache_key', $cache_key ); $query->set( 'no_found_rows', true ); return $posts; } $ids = array_values( array_filter( array_map( 'absint', (array) $ids ) ) ); if ( ! $ids ) { return array(); } $query->found_posts = count( $ids ); $query->max_num_pages = 1; return get_posts( array( 'post__in' => $ids, 'orderby' => 'post__in', 'post_type' => 'post', 'post_status' => 'publish', 'posts_per_page' => count( $ids ), 'no_found_rows' => true, 'ignore_sticky_posts' => true, 'suppress_filters' => true, ) ); }, 10, 2 ); add_filter( 'posts_results', static function ( $posts, $query ) { $cache_key = $query->get( '_hqjdw_popular_cache_key' ); if ( $cache_key && $posts ) { set_transient( $cache_key, wp_list_pluck( $posts, 'ID' ), 10 * MINUTE_IN_SECONDS ); } return $posts; }, 10, 2 ); :wq 平安推出新冠肺炎智能阅片系统 – 环球焦点
首页 科技 平安推出新冠肺炎智能阅片系统

平安推出新冠肺炎智能阅片系统

平安智慧城市智慧医疗新冠肺炎智能阅片系统落地应用于包括湖北省在内的全国1500多家医疗机构,助力疫情防控。

  截至目前,相关合作医疗机构的影像科医生已经使用平安智慧医疗新冠肺炎智能阅片系统为2000多位病人进行了智能阅片,平均15秒左右就能出具智能分析结果,准确率高达90%以上。

  据介绍,一位新冠肺炎疑似病人的肺部CT大约有300多幅图像,阅片时间一般都在15分钟左右。因此,相关影像科医生长时间不间断工作已是常态。

  对此,平安智慧医疗新冠肺炎智能阅片系统支持远程AI阅片和电子胶片影像共享,可以帮助医生全面识别病灶、出具诊断报告更快、更权威、更精准;电子胶片影像共享功能,减少重复拍片;对同一患者不同次扫描图像进行对比分析,定量测量病灶的改变情况,可以辅助医生对患者的病情发展趋势、治疗效果、转归情况等进行智能评估,帮助医生快速、有效的完成对新冠肺炎患者的检出、分诊和评估。

热门文章

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注