Here's an idea that I think could be the basis of an interesting project for someone who is studying to go into one of the 3 O's (and perhaps, needs a project to complete for a course requirement), or possibly someone already in the profession who would like to elevate their computer skills.
I call it "VirtualOptician."
It would be an application of some basic Artifical Intelligence technology to create software that would input the known facts about a patient, and then compute a specific lens (or frame and lens) selection.
I don't see that there is enough "juice" in it to provide the basis of a commercial enterprise or salable product. And my computer (an old Mac) is so far out of date that I don't see that I have the facility to experiment with this on my own. I think that you would need a Mac that can run MacOS X or a Windows 95/98/NT/XP computer to start a project like this.
I think that some of the expertise of a dispensing optician could be readily converted into software using the techniques of rule-based programming.
VirtualOptician would be the kind of computer program that is often referred to as an expert system.
http://www.ghg.net/clips/WhatIsCLIPS.html
A "microscopic" and just about self-explanatory example:
IF patient_diagnosis IS hyperope OR myope
THEN
SET candidate_lens_database TO single_vision
IF patient_diagnosis IS presbyope
THEN
SET candidate_lens_database TO multifocal
CLIPS is freeware (freely available software) that supports rule-based programming. If you've ever written a computer program in "C", you can already see how my oh-so-brief example (above) of two (hugely simplified) dispensing rules could be translated into C code. My theory is that with CLIPS (or another software development tool of similar kind), it would be gynormously easier to develop an example of VirtualOptician using a carefully thought-out set of dispensing rules.
VirtualOptician could process any/all of the data that a dispensing optician has to deal with; for example:
M.D./O.D. data: diagnoses and new refraction data
Patient summary
age, sex, occupation, hobbies and recreations
relevant health issues
Current eyeglasses data
current Rx, lens type(s), lens material(s), coatings
known problems
sees internal stress pattern of lenses at all angles/distances when using poly
Frame measurement requirements
Frame preferences
Lens and frame databases condensed from manufacturer's data
Practice specific database
Our preferred lens suppliers are ...
...
References
CLIPS Home Page: http://www.ghg.net/clips/CLIPS.html
CLIPS Related Web Locations: http://www.ghg.net/clips/OtherWeb.html
A ton of information here, for anyone who would consider taking up the VirtualOptician project.
Gensym: example of a proprietary rule-based programming engine
I call it "VirtualOptician."
It would be an application of some basic Artifical Intelligence technology to create software that would input the known facts about a patient, and then compute a specific lens (or frame and lens) selection.
I don't see that there is enough "juice" in it to provide the basis of a commercial enterprise or salable product. And my computer (an old Mac) is so far out of date that I don't see that I have the facility to experiment with this on my own. I think that you would need a Mac that can run MacOS X or a Windows 95/98/NT/XP computer to start a project like this.
I think that some of the expertise of a dispensing optician could be readily converted into software using the techniques of rule-based programming.
VirtualOptician would be the kind of computer program that is often referred to as an expert system.
Rule-based programming is one of the most commonly used techniques for developing expert systems. In this programming paradigm, rules are used to represent heuristics, or "rules of thumb," which specify a set of actions to be performed for a given situation. A rule is composed of an if portion and a then portion. The if portion of a rule is a series of patterns which specify the facts (or data) which cause the rule to be applicable. The process of matching facts to patterns is called pattern matching. The expert system tool provides a mechanism, called the inference engine, which automatically matches facts against patterns and determines which rules are applicable. The if portion of a rule can actually be thought of as the whenever portion of a rule since pattern matching always occurs whenever changes are made to facts. The then portion of a rule is the set of actions to be executed when the rule is applicable. The actions of applicable rules are executed when the inference engine is instructed to begin execution. The inference engine selects a rule and then the actions of the selected rule are executed (which may affect the list of applicable rules by adding or removing facts). The inference engine then selects another rule and executes its actions. This process continues until no applicable rules remain.
A "microscopic" and just about self-explanatory example:
IF patient_diagnosis IS hyperope OR myope
THEN
SET candidate_lens_database TO single_vision
IF patient_diagnosis IS presbyope
THEN
SET candidate_lens_database TO multifocal
CLIPS is freeware (freely available software) that supports rule-based programming. If you've ever written a computer program in "C", you can already see how my oh-so-brief example (above) of two (hugely simplified) dispensing rules could be translated into C code. My theory is that with CLIPS (or another software development tool of similar kind), it would be gynormously easier to develop an example of VirtualOptician using a carefully thought-out set of dispensing rules.
VirtualOptician could process any/all of the data that a dispensing optician has to deal with; for example:
M.D./O.D. data: diagnoses and new refraction data
Patient summary
age, sex, occupation, hobbies and recreations
relevant health issues
Current eyeglasses data
current Rx, lens type(s), lens material(s), coatings
known problems
sees internal stress pattern of lenses at all angles/distances when using poly
Frame measurement requirements
Frame preferences
Lens and frame databases condensed from manufacturer's data
Practice specific database
Our preferred lens suppliers are ...
...
References
CLIPS Home Page: http://www.ghg.net/clips/CLIPS.html
CLIPS Related Web Locations: http://www.ghg.net/clips/OtherWeb.html
A ton of information here, for anyone who would consider taking up the VirtualOptician project.
Gensym: example of a proprietary rule-based programming engine
Comment