CN115188443A - Intelligent storage management method, system, equipment and medium for skin disease clinical pictures - Google Patents

Intelligent storage management method, system, equipment and medium for skin disease clinical pictures Download PDF

Info

Publication number
CN115188443A
CN115188443A CN202210851946.3A CN202210851946A CN115188443A CN 115188443 A CN115188443 A CN 115188443A CN 202210851946 A CN202210851946 A CN 202210851946A CN 115188443 A CN115188443 A CN 115188443A
Authority
CN
China
Prior art keywords
file
database
skin diseases
uploaded
clinical pictures
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202210851946.3A
Other languages
Chinese (zh)
Inventor
李珍
刘红
张福仁
马维民
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Dermatology Hospital Affiliated To Shandong First Medical University
Original Assignee
Dermatology Hospital Affiliated To Shandong First Medical University
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Dermatology Hospital Affiliated To Shandong First Medical University filed Critical Dermatology Hospital Affiliated To Shandong First Medical University
Priority to CN202210851946.3A priority Critical patent/CN115188443A/en
Publication of CN115188443A publication Critical patent/CN115188443A/en
Pending legal-status Critical Current

Links

Images

Classifications

    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16HHEALTHCARE INFORMATICS, i.e. INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR THE HANDLING OR PROCESSING OF MEDICAL OR HEALTHCARE DATA
    • G16H10/00ICT specially adapted for the handling or processing of patient-related medical or healthcare data
    • G16H10/60ICT specially adapted for the handling or processing of patient-related medical or healthcare data for patient-specific data, e.g. for electronic patient records
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/50Information retrieval; Database structures therefor; File system structures therefor of still image data
    • G06F16/51Indexing; Data structures therefor; Storage structures

Abstract

The invention relates to an intelligent storage management method, a system, equipment and a medium for clinical pictures of skin diseases, which comprises the following steps: the client sends a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet; based on the relevant parameters received by the static resource entry, a ELASTICSEARCH search engine is adopted to find out the corresponding file storage position in the database, so that file uploading or viewing and downloading are realized. The invention adopts the hbase database to store the picture file, the character string coded by the processed CRC64 is stored in the database, the efficiency is higher by directly adopting a mode of accessing the database, and the problem of slow reading and writing of the io disk is solved. Therefore, the method and the device can be widely applied to the technical field of picture management.

Description

Intelligent storage management method, system, equipment and medium for skin disease clinical pictures
Technical Field
The invention belongs to the technical field of cloud storage, particularly relates to the technical field of picture management, and particularly relates to an intelligent storage method, system, equipment and medium for clinical pictures of skin diseases.
Background
At present, due to the facts that hospital image acquisition equipment is multiple, treatment parameters are multiple, the treatment course of a patient is multiple, and the like, image data of the patient are mutually isolated and not unified. The skin disease clinical picture intelligent storage management system integrates data such as image data and hospital business pictures acquired by the multi-terminal image acquisition equipment, and uniformly stores and manages the data such as the image data and the hospital business pictures after standardization, so that the work of doctors can be simplified, the efficiency can be improved, and image data support can be provided for subsequent treatment and scientific research.
However, in the field of cloud storage, in order to manage pictures uploaded by users, a server needs to maintain extended information data of the pictures. It is common practice to insert extended information data of a picture into Exchangeable image file format (Exif) information, but this way of managing pictures using the Exif information is inefficient.
In addition, most of the existing servers use nginx (or other similar functional services such as appche httpd) as core storage, which causes 3 problems:
1) The coupling degree of the service is high, and the nginx service also needs to be started when a rear-end service end project is started;
2) nginx configures too many static resources, and complicated configuration needs developers to know and configure related paths;
3) And (4) testing the speed of the browser for accessing the static resource corresponding to the nginx, wherein the effect is general.
Disclosure of Invention
In view of the above problems, an object of the present invention is to provide an intelligent storage management method, system, device and medium for clinical pictures of skin diseases, which can upload or download pictures more quickly and solve the problem of slow reading and writing of io disk.
In order to achieve the purpose, the invention adopts the following technical scheme:
in a first aspect, the invention provides an intelligent storage management method for clinical pictures of skin diseases, which comprises the following steps: the client sends a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet; based on the relevant parameters received by the static resource entry, a ELASTICSEARCH search engine is adopted to find the corresponding file storage position in the hbase database, so that file uploading or viewing and downloading are realized.
Further, the static resource entry provides services by adopting a restful interface layer, and when a client needs to upload a file, the restful interface layer receives related parameters by adopting a multipartFile; when a client needs to view a downloaded file from a database, the restful interface layer receives related parameters by using a path parameter @ PathVariable.
Further, the relevant parameters received by the static resource entry are used for finding the corresponding file storage position in the database by adopting a ELASTICSEARCH search engine, so as to realize file uploading or viewing and downloading, and the method comprises the following steps:
analyzing request headers of various types of uploaded and downloaded files based on spring mvc framework controller interface service in a restful interface layer;
and based on the analysis result, determining the storage position of the file in the database by adopting a ELASTICSEARCH search engine, and storing the uploaded file in the database or downloading the uploaded file from the database to view the file.
Further, the method for storing the uploaded file in the database comprises the following steps:
generating a rowKey of the file in a database based on a preset rule;
acquiring a file name and a file suffix name from a multipartFile object;
and storing the rowKey of the file in the database, the acquired file name and file suffix name, the unique identifier of the directory to which the file belongs and the uploading time information into the database together with the uploaded file as the attribute information of the uploaded file.
Further, when the uploaded file is saved in the database, the method comprises the following steps:
firstly, processing an uploaded file, calculating the number of fragments of the uploaded file, and fragmenting the uploaded file according to the number of fragments;
then, calculating CRC64 value of each section;
and finally, storing each file fragment in a database.
Further, when the uploaded file is fragmented, the size of each fragment is 1M.
Further, when downloading the viewing file from the database, the method includes:
inquiring a stored file rowkey in a database according to the file name path information;
based on the acquired file rowkey, inquiring a CRC64 fragment value of the file from a database;
and performing CRC64 coding assembly according to the slicing sequence, calculating and verifying a CRC64 coding value, and analyzing the CRC64 coding to a byte [ ] array so as to facilitate the client to check and download.
In a second aspect, the present invention provides an intelligent storage management system for clinical pictures of skin diseases, comprising: the file request module is used for sending a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet by a client; and the request processing module is used for finding the corresponding file storage position in the database by adopting a ELASTICSEARCH search engine based on the relevant parameters received by the static resource inlet, so as to realize file uploading or viewing and downloading.
In a third aspect, the present invention provides a processing device, which at least comprises a processor and a memory, wherein the memory stores a computer program, and the processor executes the computer program to realize the steps of the intelligent storage management method for the dermatosis clinical picture.
In a fourth aspect, the present invention provides a computer storage medium having computer readable instructions stored thereon, which are executable by a processor to implement the steps of the method for intelligently storing and managing clinical pictures of skin diseases.
Due to the adoption of the technical scheme, the invention has the following advantages:
1) The invention adopts the hbase database to store the picture file, the character string coded by the processed CRC64 is stored in the database, the efficiency is higher by directly adopting a mode of accessing the database, nginx and similar related services are not needed, and the problem of slow reading and writing of the io disk is solved.
2) When the files are stored, the unique rowKey is generated for each file, and the rowKey corresponding to the file in the habse database can be obtained as soon as possible through the ELASTICSEARCH search engine, so that the search performance is greatly improved.
Therefore, the method can be widely applied to the technical field of cloud storage, in particular to the field of intelligent storage management of clinical pictures of skin diseases.
Drawings
Various other advantages and benefits will become apparent to those of ordinary skill in the art upon reading the following detailed description of the preferred embodiments. The drawings are only for purposes of illustrating the preferred embodiments and are not to be construed as limiting the invention. Like reference numerals refer to like parts throughout the drawings. In the drawings:
fig. 1 is a flowchart of an intelligent storage and management method for clinical pictures of skin diseases according to an embodiment of the present invention;
FIG. 2 is patient information relating to a currently logged-on physician in an embodiment of the present invention;
FIG. 3 is grouping list information for patients in an embodiment of the present invention;
FIG. 4 is data of a present day patient associated with a current physician in the HIS system in an embodiment of the present invention;
FIG. 5 is current patient course information in an embodiment of the present invention;
FIG. 6 is image data of a current patient in an embodiment of the invention;
FIG. 7 is a current patient schedule in an embodiment of the present invention;
FIG. 8 is a schematic diagram of adding a picture to a current patient in an embodiment of the invention;
FIG. 9 is a schematic diagram of adding a schedule to a current patient in an embodiment of the present invention;
FIG. 10 is a schematic illustration of adding a treatment record to a current patient in an embodiment of the present invention;
FIG. 11 is a schematic diagram of a record of a recent patient's disease course in an embodiment of the present invention.
Detailed Description
In order to make the objects, technical solutions and advantages of the embodiments of the present invention clearer, the technical solutions of the embodiments of the present invention will be clearly and completely described below with reference to the drawings of the embodiments of the present invention. It is to be understood that the embodiments described are only a few embodiments of the present invention, and not all embodiments. All other embodiments, which can be derived by a person skilled in the art from the description of the embodiments of the invention given above, are within the scope of protection of the invention.
It is noted that the terminology used herein is for the purpose of describing particular embodiments only and is not intended to be limiting of example embodiments according to the present application. As used herein, the singular forms "a", "an", and "the" are intended to include the plural forms as well, and it should be understood that when the terms "comprises" and/or "comprising" are used in this specification, they specify the presence of stated features, steps, operations, devices, components, and/or combinations thereof, unless the context clearly indicates otherwise.
In some embodiments of the present invention, an intelligent storage management method for clinical pictures of skin diseases is provided, which comprises the following steps: the client sends a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet; based on the relevant parameters received by the static resource entry, a ELASTICSEARCH search engine is adopted to find out the corresponding file storage position in the database, so that file uploading or viewing and downloading are realized. The invention adopts the hbase database to store the picture file, the character string coded by the processed CRC64 is stored in the database, the efficiency is higher by directly adopting a mode of accessing the database, and the problem of slow reading and writing of the io disk is solved.
Correspondingly, the invention further provides an intelligent storage management system, equipment and medium for the clinical pictures of the skin diseases.
Example 1
As shown in fig. 1, the present embodiment provides an intelligent storage and management method for clinical pictures of skin diseases, which includes the following steps:
1) The client sends a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet.
Preferably, in this embodiment, the static resource entry provides services by using a restful interface layer, and when the client needs to upload a file, the restful interface layer receives relevant parameters by using a MultipartFile, and particularly, when a batch upload is needed, the relevant parameters can be received by using the MultipartFile [ ]; when a client needs to check operations such as downloading files from a database, the restful interface layer receives related parameters by using the path parameter @ PathVariable, and can more flexibly request files in different directories.
For example, when a certain picture needs to be viewed:
http://sp.online.umersoft.com:8909/shangdong-skin/img/seal
the storage position of the file corresponding to the path of the shargdong-skin/back is specified as a picture return type and a coding format process = { "image/jpeg", "image/png" }due to a protocol which needs to directly access to picture resource return
2) Based on the relevant parameters received by the static resource entry, a ELASTICSEARCH search engine is adopted to find out the corresponding file storage position in the database, so that file uploading or viewing and downloading are realized.
The method specifically comprises the following steps:
2.1 Parsing the request headers of various types of uploaded and downloaded files based on spring mvc framework controller interface service in a restful interface layer; the file types in this embodiment include pictures, tables, and PDF files, that is, png, jpeg, PDF, excel, and the like.
2.2 Using ELASTICSEARCH search engine to determine the storage location of the file in the database based on the analysis result, and storing the uploaded file or downloading the viewed file from the database through a controller interface.
Specifically, when a file needs to be uploaded, the method comprises the following steps:
(1) based on a preset rule, generating a rowKey of the file in a database, namely a data id in hbase;
(2) acquiring a file name and a file suffix name from a multipartFile object;
(3) and storing the uploaded file, the rowkey of the file in the database, the acquired file name and file suffix name, the unique identifier of the directory to which the file belongs, the uploading time and other information in the database for subsequent query.
When all information is stored in a database, firstly, processing the uploaded file, namely calculating the number of fragments of the uploaded file, and fragmenting the uploaded file according to the number of fragments; then, calculating CRC64 value of each section; and finally, storing each file fragment in a database.
Preferably, in this embodiment, when a file is fragmented, the size of each fragment is 1M.
When a file needs to be downloaded, the method comprises the following steps:
(1) inquiring a stored file rowkey in a database according to the file name path information;
(2) based on the acquired file rowkey, querying a CRC64 fragment value of the file from a database;
(3) and performing CRC64 coding assembly according to the slicing sequence, calculating and verifying a CRC64 coding value, and analyzing the CRC64 coding to a byte [ ] array so as to facilitate the client to check and download.
Preferably, before the step 1), the method further comprises the following steps: and designing an application display page of the client.
As shown in FIG. 2, clicking the lower patient icon displays the information of the patient related to the currently logged-in doctor, which is the information of the patient who acquires the HIS system of the hospital, including the information of name, sex, age, diagnosis, micro-signal, etc.
As shown in fig. 3, clicking on the group show button of fig. 2, the displayed group categories of patients, and the number of patients in each category supports searching by category name, patient group tagging in patient details, manual tagging by current physician.
Referring to FIG. 4, the present patient data associated with the current physician in the HIS system of the hospital is shown by clicking on the present patient in FIG. 2, and the patients are classified as outpatient, inpatient and medical patients.
Clicking on any of the patients in figure 2, as shown in figure 5, advances to the figure 5 page. The page displays the course information of the current patient, displays the course information according to the time axis descending sequence, and the current diagnosis and treatment picture can be uploaded manually by a doctor or an image picture of the HIS system can be obtained. And establishing a standard unified database in the background to perform standardized storage of the patient image data. Meanwhile, remark marks can be made for each picture.
As shown in fig. 6, the gallery in fig. 5 is clicked to collectively display the image data of the current patient, so that the doctor can conveniently manage the patient pictures.
As shown in fig. 7, the schedule in fig. 5 is clicked to display the schedule condition of the current patient, which may be an advance amount reminder set by the doctor for the patient, and mainly reminds the doctor when the current patient performs what action, so that the doctor can perform chronic disease management on the patient.
As shown in fig. 8, clicking the added picture in fig. 5 to enter the page in fig. 8, where the picture may be selected from a mobile phone album, or may be photographed for selection, and simultaneously, the picture may be marked with marks such as type, diagnosis, and location, and then stored.
As shown in fig. 9, clicking the adding schedule of fig. 5 to enter the page of fig. 9, where the schedule can be added to the patient, the reminding time can be set, and the general description of the current schedule can be saved.
As shown in fig. 10, the treatment parameters in fig. 5 are clicked, and the page in fig. 10 is entered, where the treatment records are newly added for the current patient, and the information of the treatment item type, the medicated bath type, the machine model, the dosage, the remarks, and the like are respectively filled and stored.
As shown in fig. 11, click the added course of fig. 5, enter the page of fig. 11, where the new added course record of the current patient is filled with information such as course classification, occurrence time, course description, etc., and the picture description of the current course can be uploaded and stored.
Example 3
The embodiment 1 provides an intelligent storage management method for clinical pictures of skin diseases, and correspondingly, the embodiment provides an intelligent storage management system for clinical pictures of skin diseases. The system provided by this embodiment can implement the method for intelligently storing and managing the clinical pictures of skin diseases in embodiment 1, and the system can be implemented by software, hardware or a combination of software and hardware. For example, the system may comprise integrated or separate functional modules or functional units to perform the corresponding steps in the methods of embodiment 1. Since the system of this embodiment is basically similar to the method embodiment, the description process of this embodiment is relatively simple, and reference may be made to part of the description of embodiment 1 for relevant points.
The intelligent storage management system for the clinical pictures of the skin diseases provided by the embodiment comprises:
the file request module is used for sending a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet by a client;
and the request processing module is used for finding the corresponding file storage position in the database by adopting a ELASTICSEARCH search engine based on the relevant parameters received by the static resource inlet, so as to realize file uploading or viewing and downloading.
Example 4
The present embodiment provides a processing device corresponding to the method for intelligently storing and managing clinical pictures of skin diseases provided in embodiment 1, where the processing device may be a processing device for a client, such as a mobile phone, a laptop, a tablet, a desktop computer, etc., to execute the method of embodiment 1.
The processing equipment comprises a processor, a memory, a communication interface and a bus, wherein the processor, the memory and the communication interface are connected through the bus so as to complete mutual communication. The memory stores a computer program capable of running on the processor, and the processor executes the intelligent storage and management method for the clinical pictures of the skin diseases provided by the embodiment 1 when running the computer program.
In some embodiments, the Memory may be a high-speed Random Access Memory (RAM) and may also include a non-volatile Memory, such as at least one disk Memory.
In other embodiments, the processor may be various general-purpose processors such as a Central Processing Unit (CPU), a Digital Signal Processor (DSP), and the like, and is not limited herein.
Example 5
The method for intelligently storing and managing skin disease clinical pictures in this embodiment 1 can be embodied as a computer program product, and the computer program product can include a computer readable storage medium on which computer readable program instructions for executing the method for intelligently storing and managing skin disease clinical pictures in this embodiment 1 are loaded.
The computer readable storage medium may be a tangible device that retains and stores instructions for use by an instruction execution device. The computer readable storage medium may be, for example, but not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any combination of the foregoing.
It should be noted that the flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of systems, methods and computer program products according to various embodiments of the present application. Each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s).
Finally, it should be noted that: the above embodiments are only for illustrating the technical solutions of the present invention and not for limiting the same, and although the present invention is described in detail with reference to the above embodiments, those of ordinary skill in the art should understand that: modifications and equivalents may be made to the embodiments of the invention without departing from the spirit and scope of the invention, which is to be covered by the claims.
The above embodiments are only used for illustrating the present invention, and the structure, connection mode, manufacturing process, etc. of the components may be changed, and all equivalent changes and modifications performed on the basis of the technical solution of the present invention should not be excluded from the protection scope of the present invention.

Claims (10)

1. An intelligent storage management method for clinical pictures of skin diseases is characterized by comprising the following steps:
the client sends a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet;
based on the relevant parameters received by the static resource entry, a ELASTICSEARCH search engine is adopted to find the corresponding file storage position in the hbase database, so that file uploading or viewing and downloading are realized.
2. The intelligent storage management method for the clinical pictures with skin diseases as claimed in claim 1, wherein the static resource portal provides services by using a restful interface layer, and when a client needs to upload files, the restful interface layer receives related parameters by using a MultipartFile; when a client needs to view a downloaded file from a database, the restful interface layer receives related parameters by using a path parameter @ PathVariable.
3. The method for intelligently storing and managing the clinical pictures of the skin diseases according to claim 1, wherein the uploading or viewing downloading of the files is realized by using a ELASTICSEARCH search engine to find the corresponding file storage location in the database based on the relevant parameters received by the static resource entry, and comprises the following steps:
analyzing request headers of various types of uploaded and downloaded files based on spring mvc framework controller interface service in a restful interface layer;
and based on the analysis result, determining the storage position of the file in the database by adopting a ELASTICSEARCH search engine, and storing the uploaded file in the database or downloading the uploaded file from the database to view the file.
4. The method for intelligently storing and managing the clinical pictures of the skin diseases as claimed in claim 3, wherein the method for storing the uploading files in the database comprises the following steps:
generating a rowKey of the file in a database based on a preset rule;
acquiring a file name and a file suffix name from a multipartFile object;
and storing the rowKey of the file in the database, the acquired file name and file suffix name, the unique identifier of the directory to which the file belongs and the uploading time information into the database together with the uploaded file as the attribute information of the uploaded file.
5. The method for intelligently storing and managing the clinical pictures of the skin diseases as claimed in claim 4, wherein the step of saving the uploaded files in the database comprises the following steps:
firstly, processing an uploaded file, calculating the number of fragments of the uploaded file, and fragmenting the uploaded file according to the number of fragments;
then, calculating CRC64 value of each section;
and finally, storing each file fragment in a database.
6. The method for intelligently storing and managing clinical pictures of skin diseases as claimed in claim 5, wherein the size of each slice is 1M when the uploaded files are sliced.
7. The method for intelligently storing and managing the clinical pictures of the skin diseases as claimed in claim 5, wherein the downloading of the viewing files from the database comprises the following steps:
inquiring a stored file rowkey in a database according to the file name path information;
based on the acquired file rowkey, querying a CRC64 fragment value of the file from a database;
and performing CRC64 coding assembly according to the slicing sequence, calculating and verifying a CRC64 coding value, and analyzing the CRC64 coding to a byte [ ] array so as to facilitate the client to check and download.
8. An intelligent storage management system for clinical pictures of skin diseases is characterized by comprising:
the file request module is used for sending a file uploading request or a file checking and downloading request through an interface service provided by a preset static resource inlet by a client;
and the request processing module is used for finding the corresponding file storage position in the database by adopting a ELASTICSEARCH search engine based on the relevant parameters received by the static resource inlet, so as to realize file uploading or viewing and downloading.
9. A processing device comprising at least a processor and a memory, the memory having stored thereon a computer program, characterized in that the processor executes the computer program to implement the steps of the intelligent storage management method for clinical pictures of skin diseases according to any one of claims 1 to 7.
10. A computer storage medium having computer readable instructions stored thereon, the computer readable instructions being executable by a processor to implement the steps of the method for intelligent storage management of clinical pictures of skin diseases according to any one of claims 1 to 7.
CN202210851946.3A 2022-07-20 2022-07-20 Intelligent storage management method, system, equipment and medium for skin disease clinical pictures Pending CN115188443A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202210851946.3A CN115188443A (en) 2022-07-20 2022-07-20 Intelligent storage management method, system, equipment and medium for skin disease clinical pictures

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202210851946.3A CN115188443A (en) 2022-07-20 2022-07-20 Intelligent storage management method, system, equipment and medium for skin disease clinical pictures

Publications (1)

Publication Number Publication Date
CN115188443A true CN115188443A (en) 2022-10-14

Family

ID=83518873

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202210851946.3A Pending CN115188443A (en) 2022-07-20 2022-07-20 Intelligent storage management method, system, equipment and medium for skin disease clinical pictures

Country Status (1)

Country Link
CN (1) CN115188443A (en)

Similar Documents

Publication Publication Date Title
AU2014384636B2 (en) Systems and methods for ephemeral eventing
US10733370B2 (en) Method, apparatus, and computer program product for generating a preview of an electronic document
US11515016B2 (en) Rule-based low-latency delivery of healthcare data
US9704207B2 (en) Administering medical digital images in a distributed medical digital image computing environment with medical image caching
US20220188217A1 (en) Methods and systems for content management and testing
US20140143271A1 (en) Multi-level medical image viewer memory management
CN114049927A (en) Disease data processing method and device, electronic equipment and readable medium
US9667696B2 (en) Low latency web-based DICOM viewer system
CN110598204A (en) Entity identification data enhancement method and system based on knowledge graph
EP2407092A2 (en) Clinical data database system and method for a critical care and/or hospital environment
US10692592B2 (en) Synchronization of healthcare data across disparate data centers
CN113360941A (en) Medical data processing method and device based on digital twins and computer equipment
CN111128329B (en) Dynamic generation method, device and medium of personalized health abstract and electronic equipment
CN115188443A (en) Intelligent storage management method, system, equipment and medium for skin disease clinical pictures
CN107580038B (en) Expert recommendation method and system
US11550869B2 (en) Web-based medical image viewer with web database
US11901075B2 (en) Method and apparatus for generating medical information of object
CN110931136B (en) Event searching method and device, computer medium and electronic equipment
CN110795448B (en) Metadata management method and device and readable storage medium
US11508467B2 (en) Aggregation, partitioning, and management of healthcare data for efficient storage and processing
US20230143593A1 (en) Digital pathology records database management
CN111210882B (en) Method, device and storage medium for sharing patient report among hospitals
US20150339354A1 (en) System and method for real time display of diagnostic laboratory data
WO2024065061A1 (en) Healthcare record virtualization
CN116775186A (en) Page data processing method and device, computer equipment and storage medium

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination